25 lines
529 B
TOML
25 lines
529 B
TOML
[tool.poetry]
|
|
name = "worker-time-sheet"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
readme = "README.md"
|
|
package-mode=false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
uvicorn = "^0.29.0"
|
|
requests = "^2.31.0"
|
|
fastapi = "^0.110.2"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
taskipy = "^1.12.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.taskipy.tasks]
|
|
build = "cd front && npm install && npm run build"
|
|
start = "uvicorn main:app --reload --port 8001"
|