Skip to main content

A simple Django app to store/access project wide persistent settings.

Project description

=====
FastSettings
=====

Django FastSettings stores settings in the database and syncs it to redis, so that access is "fast".
This will work without redis, it will simply fetch from the database each time.

Install
-----------

pip install django-fastsettings


Quick start
-----------

1. Add "fastsettings" to your INSTALLED_APPS setting like this::

INSTALLED_APPS = [
...
'fastsettings',
]

2. Add the Redis connection settings to the django settings.py file
# PROJECT SETTINGS (used in fastsettings) #
REDIS_HOST = 'localhost'
REDIS_PORT = 6379
REDIS_DB = 0
REDIS_PASSWORD = "your_redis_password"

3. For logging, add a handler for "fastsettings_logger" in your logging configuration::

4. Run `python manage.py migrate` to create the fastsettings models.

5. Start the development server and visit http://127.0.0.1:8000/admin/
to create a fastsettings (you'll need the Admin app enabled).


Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

django_fastsettings-0.4-py2.py3-none-any.whl (5.5 kB view hashes)

Uploaded Python 2 Python 3

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