This is a project from the roadmap.sh website, project details can be found here from roadmap.sh, it was implemented as an API with Python.
- FastAPI
- Pydantic
- SQLAlchemy
- PostgreSQL
- create environment using something like
conda
orvenv
- I used:
python -m venv .venv
- Activate
./.venv/Scripts/Activate
(on Windows)
- I used:
- install dependencies using
pip install -r requirements.txt
- make sure to add your env variables for PostgreSQL database (see
.env.example
)
uvicorn app.main:app --reload
fastapi dev app/main.py