Zues is a Django-based web application developed for the Jonge Democraten. The JD regularly organizes political conferences. Members can send proposals to the conference teams using this web application.
- Use
build_env.shto setup an environment. source env/bin/activateto activate the environment.- Copy
zuessite/local_settings_example.pytozuessite/local_settings.py. - Follow instructions in
zuessite/local_settings.py. - Use
python manage.py migrateto setup the database. - Use
python manage.py createsuperuserto create a superuser. - Use
python manage.py loaddata demo_datato load some demo data [optional] - Use
python manage.py runserverto start the server. Note that the server actually requires https
pip install django-extensions Werkzeug pyOpenSSL- Edit
zuessite/local_settings.pyto adddjango_extensionstoINSTALLED_APPS. - Make an SSL certificate, e.g. with openssl and some filename like foobar.cert
- Use
python manage.py runserver_plus --cert foobar.cert