- Python 2.5 or higher
- Django 1.2.3 or higher
- Django-Keyedcache
After the dependencies have been installed, you can install the latest livesettings, using:
pip install -e hg+http://bitbucket.org/bkroeze/django-livesettings/#egg=django-livesettings
Add livesettings to your installed apps in settings.py:
INSTALLED_APPS = (
...
# Uncomment the next line to enable the admin:
'django.contrib.admin',
'livesettings',
'myapp'
...
)
Add it to your urls.py:
urlpatterns = patterns('',
...
# Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),
url(r'^settings/', include('livesettings.urls')),
...
)
Execute a syncdb to create the required tables:
python manage.py syncdb