fnp
/
fnp-django-template.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e9b77f0588f7fa02a10874e73a17aa93c4b13717
[fnp-django-template.git]
/
project_name
/
settings.py
1
import os.path
2
import glob
3
4
conffiles = glob.glob(os.path.join(
5
os.path.dirname(__file__), 'settings.d', '*.py'))
6
conffiles.sort()
7
for f in conffiles:
8
execfile(os.path.abspath(f))
9
10
try:
11
execfile(os.path.abspath(os.path.join(
12
os.path.dirname(__file__), 'localsettings.py')))
13
except IOError:
14
pass