Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 757 Bytes

README.md

File metadata and controls

46 lines (31 loc) · 757 Bytes

Install

Create a virtual env

 python -m venv env

Activate virtual env

source env/bin/activate

Install packages from requirements.txt

pip install -r requirements.txt

Create the following files

  1. Copy .env.dist to .env and complete
  2. Copy users.json.dist to users.json and add users
  3. Copy email_template.txt.dist to email_template.txt and update if needed

Usage

To display debug messages set MODE to dev in .env

MODE=dev

To send emails set SEND_EMAIL to true in .env

SEND_EMAIL=true

To run the script without seeing the output stream the command output to a file in debug

python app.py > debug/output.txt

No peaking at the output file!