Easy to manage Config variables separate from App code. Useful while developing and deploying( CI/CD) django web-apps
Project description
dynamic-config
Easy to manage Config variables separate from App code. Useful while developing and deploying( CI/CD) django web-apps
Usage
- You need to subclass the
Config
class. - Any configuration would be loaded from
python config
file(default: env.py)
from the same folder where library is inherited. This file should not be committed to version history. - You also don't need to include a sample file. Since the
Config
object would be able to generateenv.py
itself. - It also loads Configuration variables from environment variables. The preference is
env variables
>env.py
- The config file should define all the variables needed for a project.
- It can also define a prefix to limit environment variables searched.
# project/conf.py
from dynamic_conf import Config
class CONFIG(Config):
"""singleton to be used for configuring from os.environ and env.py"""
# default settings
ENV = "prod" # optional field with a default value
DB_NAME = "db"
DB_HOST = "127.0.0.1"
DB_USER = "postgres"
DB_PASS = None # even None could be given as default value
SECRET_KEY:str # required field. Note: it will not work in Python 2 because
- to create
project/env.py
just run
# you could pass environment variables or set already with export
env DB_PASS='123' dynamic-conf
# or you could pass as list of key-value pair
dynamic-conf DB_USER='user-1' DB_PASS='123'
# to filter environment variables with a prefix
env VARS_PREFIX="PROD_" dynamic-conf PROD_DB_USER="user-2"
- To use the config simply import and use particular attribute
# project/settings.py
from conf import CONFIG
DATABASES = {
"default": {
"ENGINE": "django.contrib.gis.db.backends.postgis",
"HOST": CONFIG.DB_HOST,
"NAME": CONFIG.DB_NAME,
"USER": CONFIG.DB_USER,
"PASSWORD": CONFIG.DB_PASSWORD,
"PORT": "5432",
}
}
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
dynamic-conf-0.1.0.tar.gz
(4.8 kB
view details)
Built Distribution
File details
Details for the file dynamic-conf-0.1.0.tar.gz
.
File metadata
- Download URL: dynamic-conf-0.1.0.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.7.4 Linux/5.2.11-1-MANJARO
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 514fc0aa439b25d7bf9cb727d69da879135ac02433e47c7dcd27255e225ec694 |
|
MD5 | 4e0cc53a7e162d6e1a50700ba023eebe |
|
BLAKE2b-256 | 70cae7a2e00758e970a3fca92fe5b3d99af9df48f695b3b7d0cbe0ccfbae7ce6 |
File details
Details for the file dynamic_conf-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: dynamic_conf-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.7.4 Linux/5.2.11-1-MANJARO
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f6eef7ee48bda706aa84582be68ea715938d37f22dc9e404efdfb5d9d1ce0fe |
|
MD5 | 7964e5db84fee47a95f64e80edfe9186 |
|
BLAKE2b-256 | c20c6f8d44d58b4b943e525c069ac6f26fee6c56def3cf12229b5fbf8deebeb8 |