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 Build Status Coverage 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 do not officially support any versions except the latest release and the current LTS version, which are 1.11 and 2.2 right now.

This package has no dependencies itself.

In case you need older python / django versions support, then consider using older versions.

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 a 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

split_settings-1.0.0.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

split_settings-1.0.0-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file split_settings-1.0.0.tar.gz.

File metadata

  • Download URL: split_settings-1.0.0.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.11 CPython/3.7.3 Darwin/18.6.0

File hashes

Hashes for split_settings-1.0.0.tar.gz
Algorithm Hash digest
SHA256 01bf629db64b4fab5d7e78fe3064fee08761f97d382fd38bea87c9772c5ab247
MD5 dc4aa1c14c579bb92e321acf0a5fc5f3
BLAKE2b-256 81a91b67949e3decd95849f60e34bbad1b5eeeb2cbdc2254eab981cd47935681

See more details on using hashes here.

File details

Details for the file split_settings-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: split_settings-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 8.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.11 CPython/3.7.3 Darwin/18.6.0

File hashes

Hashes for split_settings-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 78904bbbaaaa400d9a5ebc4ac316cbd322f8042ee70ecbcfb60b5ddd8adcd2d2
MD5 54799321d1c1998196f233727d43f3bb
BLAKE2b-256 761439ec80dc35eaf7f90a65c0742f17a82dbe7b1a5b4c28d64cd1b7b09ff80e

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