This Project is built using Python's Fast API Framework.
Install the dependencies using poetry
poetry install
First make sure to add env variables. Then use alembic command to run the migrations.
alembic upgrade head
Run the server.
uvicorn app.main:app --reload
Use the alembic command to generate a new migration.
alembic revision --autogenerate -m "migration-name"