pip install -r requirements.txt
Dans le dossier web
# db
flask db init
flask db migrate -m "Initial migration"
flask db upgrade
# lancer flask
flask run
goto: http://localhost:5000
Dans le dossier api
Renommer .env.example en .env
# generate secret key && paste it in .env
openssl rand -hex 32
# lancer fastapi
uvicorn main:app --reload
goto: http://localhost:8000
pip freeze > requirements.txt