Django settings utilities
Project description
Yet Another Settings tool for django contains helper functions for managing localized settings files for different deployments and developers.
Installation
$ pip install django-yaset
Usage
A common pattern in django to use different settings for different environments is to have a “local_settings” directory. This utility makes this easier.
The expected directory setup is as follows:
project/
settings.py
local_settings/
__init__.py
import_redirect
development.py
production.py
secrets/
__init__.py
development.py
production.py
The import_redirect file should contain the local module name of the settings to import in this environment. In the above example, it would be either “development” or “production”. The “devleopment” and “production” files would contain the same types of declarations found in settings.py.
Inside of your settings.py file, include this at the bottom:
from yaset import import_settings
import_settings(globals())
This passes the settings packaging into the import_settings call which loads import_redirect, uses its contents to then load the local_settings and local_settings.secrets files specified.
It is not generally recommended to put either the import_redirect file or the secrets directory in your repository.
Supports
django-yaset has been tested with:
Django 2.2.3 using Python 3.6, 3.7
Docs & Source
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-yaset-0.2.0.tar.gz
.
File metadata
- Download URL: django-yaset-0.2.0.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba44afade98bc9b58572fe9aa0441183eeca8ef87c1775384acdb64e5bbbb3d8 |
|
MD5 | c585747edea279ba3971ec3f5ec27279 |
|
BLAKE2b-256 | 0da0e4e3e18a6d45519748e987c3ba737ea58fc921131edf516229a41e25249f |
File details
Details for the file django_yaset-0.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_yaset-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d54417aa0413bb4e8ff2914b2e048234a1c3e4e96dcfb607934aeeee4b18a1e2 |
|
MD5 | addceaa03d58d20caabfffc396b28a04 |
|
BLAKE2b-256 | b84ddbcda3ecb759e70b0076749ffa7a08ac6137df83c0081b6729bdd6e10426 |