configure using a local postgres install
authorDiane Trout <diane@ghic.org>
Fri, 20 Mar 2015 23:33:26 +0000 (16:33 -0700)
committerDiane Trout <diane@ghic.org>
Fri, 20 Mar 2015 23:33:26 +0000 (16:33 -0700)
htsworkflow/settings/local.py

index f3e2e83f313646ee7dd603849c759e53055f94cf..1d6b138f64fc836458ea9721f39bf5d7d839d182 100644 (file)
@@ -22,5 +22,12 @@ LOGGING = {
             'handlers': ['console'],
             'level': 'WARNING',
         }
+    },
+}
+DATABASES = {
+    'default': {
+        'ENGINE': 'django.db.backends.postgresql_psycopg2',
+        'USER': 'diane',
+        'NAME': 'htsworkflow',
     }
 }