Configure default STATICFILES_DIRS for static files (css, js, imgs)
[htsworkflow.git] / htsworkflow / settings.py
index ba2137ae56d35bf61bea11559ea73b8b7f94aff0..add3c37445298ce889f22c75ebc05b9a71fdfb24 100644 (file)
@@ -98,6 +98,9 @@ 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/'