
Product
Introducing Pull Request Stories to Help Security Teams Track Supply Chain Risks
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
django-split-settings
Advanced tools
Organize Django settings into multiple files and directories. Easily override and modify settings. Use wildcards and optional settings files.
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.
While this package will most likely work with the most versions of django
, we officially support:
This package has no dependencies itself.
In case you need older python
/ django
versions support,
then consider using older versions of django-split-settings
.
pip install django-split-settings
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.
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',
)
BASE_DIR
The django create-project
command will create a variable in your settings.py
called BASE_DIR
, which is often used to locate static files, media files, and templates.
# Created by django create-project
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles/")
MEDIA_ROOT = os.path.join(BASE_DIR, "mediafiles/")
The expression for BASE_DIR
means: get the path to the current file (settings.py
), get the parent folder (whatever you named your project), get the parent folder (the root of the project). So STATIC_ROOT
will then be evaluated to /staticfiles
(with /
meaning the root of your project/repo).
With django-split-settings
settings
is now a module (instead of a file), so os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
will evaluate to /whatever-you-named-your-project
as opposed to /
.
To fix this BASE_DIR
needs to be set to the parent folder of /whatever-you-named-your-project
:
BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
Read the CONTRIBUTING.md file.
See CHANGELOG.md file.
FAQs
Organize Django settings into multiple files and directories. Easily override and modify settings. Use wildcards and optional settings files.
We found that django-split-settings demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.