Skip to main content

Organize Django settings into multiple files and directories. Easily override and modify settings. Use wildcards and optional settings files.

Project description

django-split-settings logo


wemake.services test codecov Docs Python Version wemake-python-styleguide

Organize Django settings into multiple files and directories. Easily override and modify settings. Use wildcards in settings file paths and mark settings files as optional.

Read this blog post for more information. Also, check this example project.

Requirements

While this package will most likely work with the most versions of django, we officially support:

  • 1.11
  • 2.2
  • 3.0
  • 3.1

This package has no dependencies itself.

In case you need older python / django versions support, then consider using older versions of django-split-settings.

Installation

pip install django-split-settings

Usage

Replace your existing settings.py with a list of components that make up your Django settings. Preferably create a settings package that contains all the files.

Here's a minimal example:

from split_settings.tools import optional, include

include(
    'components/base.py',
    'components/database.py',
    optional('local_settings.py')
)

In the example, the files base.py and database.py are included in that order from the subdirectory called components/. local_settings.py in the same directory is included if it exists.

Note: The local context is passed on to each file, so each following file can access and modify the settings declared in the previous files.

We also made an in-depth tutorial.

Tips and tricks

You can use wildcards in file paths:

include('components/my_app/*.py')

Note that files are included in the order that glob returns them, probably in the same order as what ls -U would list them. The files are NOT in alphabetical order.

You can modify common settings in environment settings simply importing them

# local_settings.py
from components.base import INSTALLED_APPS

INSTALLED_APPS += (
  'raven.contrib.django.raven_compat',
)

Do you want to contribute?

Read the CONTRIBUTING.md file.

Version history

See CHANGELOG.md file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-split-settings-1.1.0.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

django_split_settings-1.1.0-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file django-split-settings-1.1.0.tar.gz.

File metadata

  • Download URL: django-split-settings-1.1.0.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/2.7.10 Darwin/18.7.0

File hashes

Hashes for django-split-settings-1.1.0.tar.gz
Algorithm Hash digest
SHA256 6b3aed89667a95525152026eab93a9f038ff22df6883006318b8b4a3d0ca6888
MD5 f98509fa2d82b87338e6b146a4743427
BLAKE2b-256 e55a0c64851cbafc5c80a13bfb220f5d6b03a702d462c6029854b9df6d9495d9

See more details on using hashes here.

File details

Details for the file django_split_settings-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_split_settings-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5d97ae64cf9ed14a831722d82ac725944667ac8c08307b7cfd22e91367b411d0
MD5 9258594bad436deb376602ad00e8250a
BLAKE2b-256 5478619e8cb680300f200406ac3ef10d018109f415ec3ce5ee333364dd00ebad

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page