Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 936 Bytes

README.md

File metadata and controls

26 lines (15 loc) · 936 Bytes

Wal-O-Mat 🐋

Build Status License: AGPL v3

The Wal-O-Mat – a simple and stupid voting advice application for student elections written in Django.

Setup

It is recommended to create a virtual environment for this project, e.g. with Virtualenv.

To install the dependencies run pip3 install -r requirements.txt.

Apply all database migrations and create the localized messages:

python3 manage.py migrate
python3 manage.py compilemessages

Add an admin user to your installation:

python3 manage.py createsuperuser

Start the Django server with python3 manage.py runserver and head to http://localhost:8000/ with your favorite browser.