Try providing new django apps-style configuration
authorDiane Trout <diane@ghic.org>
Thu, 2 Jun 2016 20:47:39 +0000 (13:47 -0700)
committerDiane Trout <diane@ghic.org>
Fri, 24 Jun 2016 22:55:58 +0000 (15:55 -0700)
Not sure if I actually needed to do this.

experiments/apps.py [new file with mode: 0644]
htsworkflow/settings/base.py

diff --git a/experiments/apps.py b/experiments/apps.py
new file mode 100644 (file)
index 0000000..7283e4c
--- /dev/null
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+class Experiments(AppConfig):
+    name = 'experiments'
+    verbose_name = 'sequencer runs'
index 5a7b9c07382fc1b0bde194ce2ae70f483957d97e..137c6f628d480f10f2d2b9a94a7a5efb2da75151 100644 (file)
@@ -62,7 +62,7 @@ INSTALLED_APPS = [
 
     'eland_config',
     'samples',
-    'experiments',
+    'experiments.apps.Experiments',
     'bcmagic',
     'inventory',
     'labels',