Changeset c386673


Ignore:
Timestamp:
Jun 15, 2014, 9:42:50 PM (11 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master
Children:
5c334f6
Parents:
d604f81
git-author:
Alex Dehnert <adehnert@…> (06/15/14 00:11:02)
git-committer:
Alex Dehnert <adehnert@…> (06/15/14 21:42:50)
Message:

Move all the settings into a new settings directory

Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • .gitignore

    r09b7c26 rc386673  
    33django-treebeard-1.1/
    44django-treebeard-1.1.tar.gz
    5 local_settings.py
    6 local_settings_after.py
     5remit/settings/local.py
     6remit/settings/local_after.py
    77database_settings
    88client/settings.py
  • remit/settings/__init__.py

    rf5bebab rc386673  
    33import sys
    44
    5 SITE_ROOT = os.path.normpath(os.path.dirname(__file__))
     5SITE_ROOT = os.path.normpath(os.path.join(os.path.dirname(__file__), '..'))
    66SITE_WEB_PATH = ''
    77DEFAULT_DOMAIN = 'mit.edu'
     
    5353USE_I18N = True
    5454
    55 from local_settings import *
     55from local import *
    5656
    5757# Absolute path to the directory that holds media.
     
    126126USER_EMAIL_SIGNATURE = "%s Treasury" % (GROUP_NAME,)
    127127
    128 from local_settings_after import *
     128from local_after import *
Note: See TracChangeset for help on using the changeset viewer.