In settings.py
, add to INSTALLED_APPS
:
'chiplog',
'tagging',
'typogrify',
'django.contrib.markup',
'django.contrib.humanize',
Also in settings.py
, add the following setting:
CHIPLOG_MEDIA_URL = MEDIA_URL + 'chiplog/'
In urls.py
:
urlpatterns = patterns('',
(r'^[whatever_you_want]/', include('chiplog.urls')),
Add a symbolic link to the Chiplog media folder inside your project’s media folder. Something like:
cd /path/to/your/project/media
ln -s /path/to/chiplog/static chiplog
Run ./manage.py syncdb
from the root of your project, and you should be ready to start Chiplogging.
If you don’t already have something configured, you can add a login template from the example Chiplog project.
Copy templates/registration/
to your project’s template folder.
Add to urls.py
:
(r'^accounts/login/$', 'django.contrib.auth.views.login'),
MIT
You can download this project in either zip or tar formats.
You can also clone the project with Git by running:
$ git clone git://github.com/trey/chiplog