Skip to content
This repository has been archived by the owner on Mar 17, 2024. It is now read-only.

dotkom/redwine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Redwine

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.

Quick start

  1. Add "redwine" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = (
    ...
    'redwine',
)
  1. Include the redWine URLconf in your project urls.py like this::
re_path(r'^redwine/', include('redwine.urls')),
  1. Run python manage.py migrate to create the redWine models.

  2. Visit http://127.0.0.1:8000/redwine/ to do stuff.