Skip to main content

Custom settings loader for standalone django apps

Project description

Django Custom Settings
======================

# FAQ

* What does this do?

> Register your custom standalone app settings into Django conf, so they can be overrided by users of your standalone app.

* How does it work?

> Create a settings.py in your app. Make sure your settings are all caps.
> In your init file for you app, add a call to django-custom-settings and you're done.

# Full Example

```python
# __init__.py
from custom_settings.loader import load_settings
load_settings(__name__)
```

```python
# settings.py
MYAPP_SETTINGS_FOO = "foo"
MYAPP_SETTINGS_BAR = "bar"

myapp_settings_that_wont_be_loaded = "will not be available, because it's not all uppercase"
```

```python
# usage, on views.py, for example
from django.conf import settings

def home(request):

if settings.MYAPP_SETTINGS_FOO == "foo":
return "this is a foo"
else:
return "this is not a foo"
```

History
=======

## 0.1.0 (2016-02-01)

* First release on PyPI.

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-custom-settings-0.1.4.tar.gz (5.1 kB view details)

Uploaded Source

File details

Details for the file django-custom-settings-0.1.4.tar.gz.

File metadata

File hashes

Hashes for django-custom-settings-0.1.4.tar.gz
Algorithm Hash digest
SHA256 c1aaf4a9ffd2c90f6009db04b8922ef82bcff688a21251e5f37d6efef0e8e9a6
MD5 5e0b7d5809facc22957d77c60107c872
BLAKE2b-256 79994745f8462defe7197cd6bef909ebc7ac3ef5b2264a3e57dab58dd5f330cc

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