pip freeze > requirements.txt
and make sure the port is 8000
Create Virtual Environment
python -m venv venv
Activate Virtual Environment
- on windows
venv\Scripts\activate
- on macOS/Linux
source venv/bin/activate
pip install -r requirements.txt
DB_SERVER=
DB_NAME=
DB_USERNAME=
DB_PASSWORD=
DB_DRIVER=
JWT_SECRET_KEY=
python app.p