Update WSGI_APPLICATION to point to the updated location of the wsgi script
[htsworkflow.git] / htsworkflow / settings.py
index c366ce32a238deac74491ad3300a7d2d343bf11f..c7b7dfb6670dd8cb0d63661e696155bcc536cebd 100644 (file)
@@ -66,9 +66,8 @@ TEMPLATE_DIRS = (
 )
 
 ROOT_URLCONF = 'htsworkflow.frontend.urls'
-#ROOT_URLCONF='wsgiexample.urls'
 
-WSGI_APPLICATION = 'htsworkflow.frontend.wsgi.application'
+WSGI_APPLICATION = 'htsworkflow.wsgi.application'
 
 # Database
 # https://docs.djangoproject.com/en/1.6/ref/settings/#databases
@@ -98,8 +97,14 @@ USE_TZ = True
 # https://docs.djangoproject.com/en/1.6/howto/static-files/
 STATIC_URL = '/static/'
 
+
+#####
+# Application specific settings
+# Update this in settings_local to point to your flowcell result directory
+RESULT_HOME_DIR = os.path.join(BASE_DIR, 'test', 'results')
+
 try:
     # allow local customizations
     from settings_local import *
 except ImportError as e:
-    pass
\ No newline at end of file
+    pass