Default appversion repo to pwd/.git

This commit is contained in:
Trever Fischer
2012-02-25 12:40:33 -05:00
parent 52429225aa
commit e0b19fb4bc

View File

@@ -1,6 +1,7 @@
# global Django settings for caminus project.
# Please override this in local_settings.py, so as to
# prevent sensitive data being checked into git.
import os
DEBUG = True
TEMPLATE_DEBUG = DEBUG
@@ -175,5 +176,7 @@ LOGIN_URL = '/profiles/login'
LOGOUT_URL = '/profiles/logout'
LOGIN_REDIRECT_URL = '/'
APPVERSION_GIT_REPO = os.path.sep.join((os.path.dirname(__file__), '.git'))
# Load any site-local overrides, such as camin.us' database settings, etc
from local_settings import *