add default values for some application specific values
[htsworkflow.git] / htsworkflow / settings.py
index 451d54a61ce93271fda83e0fb99b7dbbea9cae09..aacb4efd4ee44d6c2a210d8dd13a56874fc830d6 100644 (file)
@@ -94,14 +94,22 @@ USE_L10N = True
 
 USE_TZ = True
 
+TIME_ZONE='America/Los_Angeles'
 
 # Static files (CSS, JavaScript, Images)
 # https://docs.djangoproject.com/en/1.6/howto/static-files/
+STATICFILES_DIRS = (
+    os.path.join(BASE_DIR, 'htsworkflow', 'frontend', 'static'),
+)
 STATIC_URL = '/static/'
 
 
 #####
 # Application specific settings
+DEFAULT_PM = 5
+
+# How often to recheck the result archive
+RESCAN_DELAY=1
 # Update this in settings_local to point to your flowcell result directory
 RESULT_HOME_DIR = os.path.join(BASE_DIR, 'test', 'results')