24 lines
552 B
TOML
24 lines
552 B
TOML
[tool.poetry]
|
|
name = "service-monitoring"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
readme = "readme.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
fastapi = "^0.111.0"
|
|
uvicorn = "^0.29.0"
|
|
requests = "^2.31.0"
|
|
python-dotenv = "^1.0.1"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
taskipy = "^1.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.taskipy.tasks]
|
|
build = "cd front && npm install && npm run generate"
|
|
start = "uvicorn main:app --reload --host 0.0.0.0 --port 8000" |