django based event toolkit
Project description
Notice: This is a first draft of an installation guide. It’s not finished and complete.
Make sure you have a working django project setup.
Install woodstock with pip:
pip install woodstock
Make sure that the FeinCMS and Pennyblack Apps are added to your installed apps in your settings.py:
'woodstock',
Install dependencies (over pip):
icalendar
Add Woodstock Models to south migration modules in your settings.py:
SOUTH_MIGRATION_MODULES = { 'woodstock': 'project_name.migrations_woodstock', }
Run schemamigrations and migrate:
./manage.py schemamigration --initial woodstock ./manage.py migrate