Create a virtual env
python -m venv envActivate virtual env
source env/bin/activateInstall packages from requirements.txt
pip install -r requirements.txtCreate the following files
- Copy
.env.distto.envand complete - Copy
users.json.disttousers.jsonand add users - Copy
email_template.txt.disttoemail_template.txtand update if needed
To display debug messages set MODE to dev in .env
MODE=devTo send emails set SEND_EMAIL to true in .env
SEND_EMAIL=trueTo run the script without seeing the output stream the command output to a file in debug
python app.py > debug/output.txtNo peaking at the output file!