Go to file
Benni Bärmann 2f30ae3d36 bugfix production settings 2020-11-11 17:33:20 +01:00
foerderbarometer bugfix production settings 2020-11-11 17:33:20 +01:00
input GO AWAY! 2020-11-09 12:42:29 +01:00
.gitignore added /staticfiles to .gitignore 2020-11-09 16:22:24 +01:00
LICENSE Initial commit 2020-09-21 11:31:02 +00:00
README.md changed production settings to mysql/mariadb database 2020-11-11 17:04:40 +01:00
manage.py new django project 2020-09-21 14:27:16 +02:00

README.md

foerderbarometer

purpose: gather data from intern(WMDE) and extern(volunteers) forms to create a database ('förderdatenbank') and send emails with links for a questionary.

Should be executed daily

python3 manage.py sendmails

versions used in development

python 3.8.2
django 3.1.1
django-formtools 2.2
whitenoise 5.2.0
gunicorn 20.0.4

production setup

cp foerderbarometer/settings_production.py foerderbarometer/settings.py

edit /secrets.json to contain something similar to

{ "DATABASE_PASSWORD": "THIS IS TOP SECRET!" }

python manage.py makemigrations
python manage.py migrate
python manage.py collectstatic

add to cron one time a day:

python manage.py sendmails

server starts with

 nohup gunicorn --forwarded-allow-ips="*" -b '0:8000' foerderbarometer.wsgi 2&> logfile &