Simplified steps (untested and prone to errors)
- Clone the repository
- Install the dependencies
pip install -r requirements.txt- Be sure to have the following environment variables set in your
.envfile. They correspond to the database connection details.
# .env
DB_NAME=""
DB_USER=""
DB_HOST=""
DB_PWD=""- Set the
global dummyvariable toTruein themain.pyfile. Like so:
# main.py
global dummy; dummy = True- Run the
main.pyfile
python main.py