RedWine is a simple Django app to conduct Web-based wine punishments. For each user in their own comitee(s), users can add, delete and manage punishments.
- Add "redwine" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = (
...
'redwine',
)
- Include the redWine URLconf in your project urls.py like this::
re_path(r'^redwine/', include('redwine.urls')),
-
Run
python manage.py migrate
to create the redWine models. -
Visit http://127.0.0.1:8000/redwine/ to do stuff.