Separate src dir.
[fnp-django-template.git] / src / project_name / settings / __init__.py
1 from .paths import *
2 from .basic import *
3 from .apps import *
4 from .locale import *
5 from .auth import *
6 from .context import *
7 from .middleware import *
8 from .static import *
9 from .logging import *
10 from .contrib import *
11 from .custom import *
12
13
14 # Load localsettings, if they exist
15 try:
16     from ..localsettings import *
17 except ImportError:
18     pass