Configure default STATICFILES_DIRS for static files (css, js, imgs)
[htsworkflow.git] / htsworkflow / settings.py
index b44a5884eda96acb4b9687b630f8197acd40e396..add3c37445298ce889f22c75ebc05b9a71fdfb24 100644 (file)
@@ -94,9 +94,13 @@ 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/'
 
 
@@ -105,6 +109,10 @@ STATIC_URL = '/static/'
 # Update this in settings_local to point to your flowcell result directory
 RESULT_HOME_DIR = os.path.join(BASE_DIR, 'test', 'results')
 
+# configure who is sending email and who should get BCCs of announcments
+NOTIFICATION_SENDER = "noreply@example.com"
+NOTIFICATION_BCC=[]
+
 try:
     # allow local customizations
     from settings_local import *