service_monitoring/pyproject.toml

23 lines
512 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"
[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 build"
start = "uvicorn main:app --reload --host 0.0.0.0"