A simple Django app to store/access project wide persistent settings.
Project description
# FastSettings
Version: | 0.5 |
---|---|
Download: | <https://pypi.org/project/django-fastsettings> |
Source: | <https://github.com/wickeym/django-fastsettings> |
Keywords: | django, redis, database, settings, 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.
## Quick start
pip install django-fastsettings
Add “fastsettings” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'fastsettings', ]
Add the Redis connection settings to the django settings.py file
` python # PROJECT SETTINGS (used in fastsettings) REDIS_HOST = 'localhost' REDIS_PORT = 6379 REDIS_DB = 0 REDIS_PASSWORD = "your_redis_password" `
For logging, add a handler for “fastsettings_logger” in your logging configuration:
Run python manage.py migrate to create the fastsettings models.
Start the development server and visit <http://127.0.0.1:8000/admin/> to create a fastsetting (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.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size django_fastsettings-0.5-py3-none-any.whl (8.9 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size django-fastsettings-0.5.tar.gz (5.7 kB) | File type Source | Python version None | Upload date | Hashes View |
Hashes for django_fastsettings-0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e996b6db5fe6fc781ff2d5a8fa0cff38440c1b6d1fb4361c3a4a3b0c5919b919 |
|
MD5 | f95bcce58b8578ce3c3657ef20ebbce8 |
|
BLAKE2-256 | 8dae34431cead9e7eea86b69afb3badcf1ca5349249a43fc785835cf5aebf32b |