Provides log to a project template.
- Install Project Template
django-admin.py startproject --template=https://github.com/zhouxb/project_template/zipball/master [project_name]
- Install App Account
pip install https://github.com/zhouxb/app_loggit/zipball/master
- Add account to INSTALLED_APPS in settings.py
INSTALLED_APPS = {
...
loggit,
}
- Add loggit url in urls.py
url(r'loggit/', include('loggit.urls')),
- Create DB
python manage.py schemamigration loggit --init
python manage.py migrate loggit