Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 381 Bytes

File metadata and controls

29 lines (16 loc) · 381 Bytes

Initialise Python Environment :

Run the following :

python -m venv venv
source venv/bin/activate

Install Dependencies :

Run The Following :

pip install -r requriments

Run App

python src/app.py

Setup Sqlite Database :

Run the following : Initialise alembic :

alembic init alembic
alembic upgrade head

Running tests:

pytest