Vous allez avoir besoin de python 3.9+ d'installé. Le backend utilise poetry
pour gérer ses dépendances et ses environnements.
Pour installer poetry
, référez-vous aux instructions de la documentation poetry
poetry install
poetry run uvicorn --reload cdb.api.main:app
Grâce à FastAPI, vous pouvez trouver une documentation swagger à jour sur l'URL http://localhost:8000/docs
Construire l'image
docker build . -t cdb_backend:local
Lancer l'image sur le port 4000
docker run --rm -p 4000:4000 --name cdb_backend cdb_backend:local
HASURA_GRAPHQL_DATABASE_URL=postgres://cdb:test@localhost:5432/carnet_de_bord poetry run python scripts/connect_to_db.py