summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--localsettingsserver.py9
-rw-r--r--localsettingswindows.py11
2 files changed, 19 insertions, 1 deletions
diff --git a/localsettingsserver.py b/localsettingsserver.py
index 72df43c..def4aac 100644
--- a/localsettingsserver.py
+++ b/localsettingsserver.py
@@ -8,3 +8,12 @@ DATABASE_PORT = '' # Set to empty string for default. Not used with
SURVEX_DATA = ''
CAVERN = 'cavern'
EXPOWEB = '/home/mjg/expoweb'
+
+PYTHON_PATH = '/home/mjg/expoweb/troggle/'
+
+TEMPLATE_DIRS = (
+ "/home/mjg/expoweb/troggle/templates",
+ # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
+ # Always use forward slashes, even on Windows.
+ # Don't forget to use absolute paths, not relative paths.
+)
diff --git a/localsettingswindows.py b/localsettingswindows.py
index 2ac583b..a5a1c77 100644
--- a/localsettingswindows.py
+++ b/localsettingswindows.py
@@ -7,4 +7,13 @@ DATABASE_PORT = '' # Set to empty string for default. Not used with
SURVEX_DATA = 'c:\\Expo\\loser\\'
CAVERN = '"C:\\Program Files\\Survex\\cavern"'
-EXPOWEB = 'C:\\Expo\\expoweb\\' \ No newline at end of file
+EXPOWEB = 'C:\\Expo\\expoweb\\'
+
+PYTHON_PATH = 'C:\\expoweb\\troggle\\'
+
+TEMPLATE_DIRS = (
+ "c:/expoweb/troggle/templates",
+ # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
+ # Always use forward slashes, even on Windows.
+ # Don't forget to use absolute paths, not relative paths.
+) \ No newline at end of file