A re-useable Django app for building models that modify Django settings.
Project description
Settings Model
Documentation: https://django-settings-model.readthedocs.io
Source: https://github.com/gregschmit/django-settings-model
PyPI: https://pypi.org/project/django-settings-model/
This Django reusable app implements a base SettingsModel class to allow settings to be edited and saved in the database. For any particular project, you probably want to customize which settings are exposed, so while there is a Settings example implementation that you can use, the abstract model SettingsModel can be used to construct your own settings model(s), and things like webserver restarts are handled in the abstract model class.
The Problem: Sometimes you want to build an app that can run on an arbitrary piece of equipment, and things like timezone, hostname, or SMTP settings may need to be editable from the UI.
The Solution: This app implements a base SettingsModel class that allows you to expose settings to a user interface via the database.
How to Use
$ pip install django-settings-model
You can either create your own custom settings model, inheriting from settings_model.models.SettingsModel, or you can use the example implementation provided in the settings_model.models.Settings model. If you include settings_model in your INSTALLED_APPS, then that model will be migrated to your database when you run python3 manage.py migrate and you will see the settings in the admin site. You need to add the following to the end of your settings.py file:
try:
from .model_settings import *
except:
pass
If you create a custom Settings model, then ensure you call its .init() class method in the application’s AppConfig.ready() method. This will update the settings with the true values (and optionally create an initial settings model instance) on startup.
Settings
SETTINGS_MODEL_REBOOT_FILES (default []): This is a list of files that should be touched when the settings model is saved to signal to the webserver to update. If it is falsy, then the system will try to find and touch the file BASE_DIR/manage.py and the wsgi.py file defined by WSGI_APPLICATION.
Contributing
Submit a pull request if you would like to contribute. You must only contribute code that you have authored or otherwise hold the copyright to, and you must make any contributions to this project available under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-settings-model-0.3.0.tar.gz
.
File metadata
- Download URL: django-settings-model-0.3.0.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 419094d118ff4d0a8ee62ed211ea3c4b3d425c604d9e82fc5f6e5f5870b0abf5 |
|
MD5 | 59a464b48d2454a3914f360d824b532b |
|
BLAKE2b-256 | 4122950a9d0da066b07975b484de1d07b25736d90e3ff3ba7e86d05e92c46e04 |
Provenance
File details
Details for the file django_settings_model-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: django_settings_model-0.3.0-py3-none-any.whl
- Upload date:
- Size: 15.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a6ae7522209778170060e1ee60701e67b51700a21db0275e2fc3e70e196ed90 |
|
MD5 | 8c936dbcd0fe904878be08469fa0df44 |
|
BLAKE2b-256 | 2e44a50f7826c0bc2693745d93bc88bb4e9d2ae5f9646034e5030eb58307e83a |