Real World Example#

There is an example project that tries to demonstrate the functionality of this app. You can get it working using the Django development server. Be sure to run this inside your own virtualenv:

$ git clone git@github.com:abhiabhi94/dj-hitcount.git
$ pip install -r dev-requirements.txt
$ python -m django --settings=test.settings migrate  # will load some data fixtures for you
$ python -m django --settings=test.settings createsuperuser  # for access to the admin portion
$ python -m django --settings=test.settings runserver        # should be all set!

When you are ready to work on your own site, check out the Installation and Usage and Additional Settings sections.