Installation

Requirements

Installing Livesettings

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

Project Versions

Table Of Contents

Previous topic

About

Next topic

Usage

This Page