Helper funcions
Project description
===========
Default settings
===========
# In app/settings/common.py
#encoding:utf-8
import sys
from os.path import abspath, dirname, join, normpath
######### PATH CONFIGURATION
# Absolute filesystem path to this Django project directory.
DJANGO_ROOT = dirname(dirname(abspath(__file__)))
# Add all necessary filesystem paths to our system path so that we can use
# python import statements.
sys.path.append(dirname(DJANGO_ROOT))
sys.path.append(normpath(join(DJANGO_ROOT, '../apps')))
sys.path.append(normpath(join(DJANGO_ROOT, '../libs')))
sys.path.append(normpath(join(DJANGO_ROOT, "lib", "python2.7", "site-packages")))
########## END PATH CONFIGURATION
import o2w.settings
o2w.settings.DJANGO_ROOT = DJANGO_ROOT
from o2w.settings.common import *
# In app/settings/dev.py
from common import *
from o2w.settings.dev import *
# In app/settings/prod.py
from common import *
from o2w.settings.prod import *
Default settings
===========
# In app/settings/common.py
#encoding:utf-8
import sys
from os.path import abspath, dirname, join, normpath
######### PATH CONFIGURATION
# Absolute filesystem path to this Django project directory.
DJANGO_ROOT = dirname(dirname(abspath(__file__)))
# Add all necessary filesystem paths to our system path so that we can use
# python import statements.
sys.path.append(dirname(DJANGO_ROOT))
sys.path.append(normpath(join(DJANGO_ROOT, '../apps')))
sys.path.append(normpath(join(DJANGO_ROOT, '../libs')))
sys.path.append(normpath(join(DJANGO_ROOT, "lib", "python2.7", "site-packages")))
########## END PATH CONFIGURATION
import o2w.settings
o2w.settings.DJANGO_ROOT = DJANGO_ROOT
from o2w.settings.common import *
# In app/settings/dev.py
from common import *
from o2w.settings.dev import *
# In app/settings/prod.py
from common import *
from o2w.settings.prod import *
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
File details
Details for the file o2w_settings_cms-0.0.1.tar.gz
.
File metadata
- Download URL: o2w_settings_cms-0.0.1.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 293fa9d799319342aa7c2db8ec681ee4d8e23d519d81dd01c22c69f5b89bd945 |
|
MD5 | 273c0054c3c80b8ec3af568669b4a436 |
|
BLAKE2b-256 | fc106c5b9f02709763de79635a1505ed99b5a7910faeaabb65d80ff78cb1b422 |