A Django Registration app to be used for online user registration for "Introduction to Python" workshop.
You should be able to get started with:
$ git clone git@github.com:sourabhv/kronos.git
$ cd kronos
# configure your local settings (sample here: http://tinypaste.org/Y6rLer2B)
$ vim kronos/settings/local.py
# start the django server
$ python manage.py runserver
If you wish to contribute to kronos, please create a fork of this repository and work on your version and then send us a pull request.
One more thing, do setup an upstream to the original repository so that you're always updated with the latest code.
$ git remote add upstream git@github.com:sourabhv/kronos.git
Next, please follow the following everytime before you start working
$ git fetch upstream
$ git checkout master
$ git merge upstream/master
Happy hacking!