Django Docker helpers
Project description
pip install -e git+https://github.com/night-crawler/django-docker-helpers.git#egg=django-docker-helpers
# OR
pip install django-docker-helpers
Utils
load_yaml_config(project_name: str, filename: str) - loads config from specified YAML file. Returns dict bundle from YAML and configure(key, default, coerce) function to get config vars from YAML or ENV
env_bool_flag(flag_name, strict) - check if ENV option specified, is it set to true, 1, 0, etc.
run_env_once ensure django management don’t call twice <https://stackoverflow.com/questions/16546652/why-does-django-run-everything-twice>_
is_dockerized - reads DOCKERIZED flag from env
is_production - reads PRODUCTION flag from env
Helper functions
ensure_databases_alive(max_retries=100) - tries to execute SELECT 1 for every specified database alias in DATABASES until success or max_retries reached
ensure_caches_alive(max_retries=100) - tries to execute SELECT 1 for every specified cache alias in CACHES until success or max_retries reached
migrate - executes ./manage.py migrate
modeltranslation_sync_translation_fields - run sync_translation_fields if modeltranslation is present
collect_static - alias for ./manage.py collectstatic -c --noinput -v0
create_admin - create superuser from settings.CONFIG['superuser'] if user does not exists and user has no usable password
run_gunicorn(application: WSGIHandler, gunicorn_module_name: str='gunicorn_prod') - runs gunicorn
Sample config
debug: true
db:
engine: django.db.backends.postgresql
host: postgres
port: 5432
database: mydb
user: mydb_user
password: mydb_password
conn_max_age: 60
Read config
import os
from django_docker_helpers.utils import load_yaml_config
CONFIG, configure = load_yaml_config(
'', # prefix
os.path.join(
BASE_DIR, 'project', 'config',
os.environ.get('DJANGO_CONFIG_FILE_NAME', 'without-docker.yml')
)
)
DATABASES = {
'default': {
'ENGINE': configure('db.name', 'django.db.backends.postgresql'),
'HOST': configure('db.host', 'localhost'),
'PORT': configure('db.port', 5432),
'NAME': configure('db.database', 'project_default'),
'USER': configure('db.user', 'project_default'),
'PASSWORD': configure('db.password', 'project_default'),
'CONN_MAX_AGE': configure('db.conn_max_age', 60, coerce_type=int),
}
}
Usage
#!/usr/bin/env python
import os
import sys
from django.core.management import execute_from_command_line
from django_docker_helpers.db import ensure_databases_alive, ensure_caches_alive, migrate, \
modeltranslation_sync_translation_fields
from django_docker_helpers.files import collect_static
from django_docker_helpers.management import create_admin, run_gunicorn
from msa_mailer.wsgi import application
PRODUCTION = bool(int(os.environ.get('MSA_MAILER_PRODUCTION', 0) or 0))
SERVER = bool(int(os.environ.get('MSA_MAILER_SERVER', 0) or 0))
if __name__ == '__main__':
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'msa_mailer.settings')
if PRODUCTION or os.environ.get('MSA_MAILER_FORCE_PRODUCTION'):
ensure_databases_alive(100)
ensure_caches_alive(100)
# skip collectstatic & migrations for worker
if SERVER:
collect_static()
migrate()
modeltranslation_sync_translation_fields()
create_admin()
if len(sys.argv) == 2 and sys.argv[1] == 'gunicorn':
gunicorn_module_name = 'gunicorn_dev'
if PRODUCTION:
gunicorn_module_name = 'gunicorn_prod'
run_gunicorn(application, gunicorn_module_name=gunicorn_module_name)
else:
execute_from_command_line(sys.argv)
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-docker-helpers-0.1.10.tar.gz.
File metadata
- Download URL: django-docker-helpers-0.1.10.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f37dbb4f96eb653b28f941cc832c559d2a0ee9f207ab3f6a71898d576c004421
|
|
| MD5 |
03f404e9e274987069cbc14506cf0099
|
|
| BLAKE2b-256 |
9646b3221114391bf5e6ea2d1035ea82b7da44427fe76c1cf845d81ed1503c46
|
File details
Details for the file django_docker_helpers-0.1.10-py3-none-any.whl.
File metadata
- Download URL: django_docker_helpers-0.1.10-py3-none-any.whl
- Upload date:
- Size: 32.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
869a6cd800a7d986b102f180588a5cb1a0d880e5af5beb09c53c081373097d10
|
|
| MD5 |
9ce29f1b51f00e1d4cc6d694d925afaf
|
|
| BLAKE2b-256 |
c0fc4fa69baf5314d4057d368da2d28c2117ac242b2cf2fa010e049fb8199441
|