|
install
How to install django-schedule
IntroductionThis page will take you through the process of installing django-schedule. DetailsPrerequisiteThis reusable apps use dateutil as rule engine for recurrent event, in order to install it you can use easy_install : easy_install dateutil Get django-scheduleAs of now there is no distributable packages of this app however you can access it using subversion. svn checkout http://django-schedule.googlecode.com/svn/trunk/ django-schedule Then in order to use it you will need to add the schedule directory containing this reusable app somewhere in your PYTHONPATH. The repository also contains a "sample_project" that can help you to get an idea on what this app is doing. The rest of the story is up to you but the basic actions are : ./manage.py syncdb ./manage.py runserver You should now be all set and can point your browser to this url |
Sign in to add a comment
missing a mention of INSTALLED_APPS?
in the first step, that should be easy_install python-dateutil