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