Skip to main content

Django application to provide a web interface to set a yet another django's settings

Project description

https://travis-ci.org/hirokiky/django-websettings.png

Django application to provide a web interface to set a yet another django’s settings.

Basic usage

You can set a setting file containing some key-value pairs like django’s settings.py. Then a web interface to set setting values will be provided automatically.

The value in the setting file is handled as default value of web interface. A new value set from web interface overrides that default value.

The setting file will be like this:

TEST_WEBSETTING = 'default value'
SPAM = 'default spam'

Then you can get setting values from websettings.

>>> from websettings import websettings
>>> websettings.TEST_WEBSETTING
'default value'

After you set overriding value (like ‘after value’) by using web interface…:

>>> websettings.TEST_WEBSETTING
'after value'

Install

This library is registered in PyPI as django-websettings. You can install it as much as you like.

Setting

Websettings file

The position of the setting file is specified by a WEBSETTINGS_MODULE in your project’s settings.py file:

# In your settings.py file.
WEBSETTING_MODULE = 'yourproject.websettings'

Under project directory seems good. You should put these setting key’s by UPPER_CASE.

Web interface URL

The url to web interface to set setting values can be included like this:

# In your urls.py file.
url(r'^websettings/', include('websettings.urls'))

The admin user can only access this page.

Backend

django-websettings is designed to correspond to multiple backend to store settings.

You can specify the back end module to set a WEBSETTINGS_BACKEND in your project’s setting.py file:

# In your settings.py file
WEBSETTINGS_BACKEND = 'path.to.backend_module'

A DB backend (websetting.backends.db) is used by default.

Testing

django-websettings is tested by some environments, check out the Travis CI report.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-websettings-0.1.tar.gz (25.0 kB view details)

Uploaded Source

File details

Details for the file django-websettings-0.1.tar.gz.

File metadata

File hashes

Hashes for django-websettings-0.1.tar.gz
Algorithm Hash digest
SHA256 72a2b5f85a20fd6839ee8bc70c51d4695dc9a6f21e022f2aec521d1e31251e92
MD5 d3ba3226127c3e226e95a9b6e0337f2b
BLAKE2b-256 312758af163d70d034c6d9ff95ef9f41dea14a8d2310a94d75f059b79b53de14

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page