Get emails every morning to see if there are burgers at the ETH Polymensa.
emailemail address from which the emails are sentpasswordpassword / app password of the email address
Stored in Google Firestore DB. See helpers/db.py. To access the DB, one must have a service account key file named serviceAccountKey.json.
For vercel, the .json file with the credentials must be converted to base64 and stored in the environment variable B64_FIREBASE_CREDENTIALS. Convert with
base64 serviceAccountKey.json > key.b64specified and explained in config.toml
specified by the crontab in vercel.json
All tests are in the /test/ folder, in files ending in _test.py.
To run the tests (using unittest), run
python3 -m unittest discover -s test -p "*.py"