dev laptop has a new hostname
authorDiane Trout <diane@ghic.org>
Wed, 11 Jan 2017 23:02:54 +0000 (15:02 -0800)
committerDiane Trout <diane@ghic.org>
Wed, 11 Jan 2017 23:02:54 +0000 (15:02 -0800)
htsworkflow/settings/amarana.py [new file with mode: 0644]
htsworkflow/settings/myrada.py [deleted file]

diff --git a/htsworkflow/settings/amarana.py b/htsworkflow/settings/amarana.py
new file mode 100644 (file)
index 0000000..aad547a
--- /dev/null
@@ -0,0 +1,26 @@
+# configure debugging
+import os
+from .local import *
+
+DEBUG=True
+
+INTERNAL_IPS = ('127.0.0.1',)
+
+MIDDLEWARE_CLASSES.extend([
+    #'debug_toolbar.middleware.DebugToolbarMiddleware',
+])
+
+DATABASES = {
+    #'default': {
+        #'ENGINE': 'django.db.backends.sqlite3',
+        #'NAME': os.path.join(settings.BASE_DIR, '..', 'fctracker.db'),
+    #}
+    'default': {
+        'ENGINE': 'django.db.backends.postgresql_psycopg2',
+        'HOST': 'felcat.caltech.edu',
+        'USER': 'diane',
+        'NAME': 'htsworkflow-django1.7',
+    }
+
+}
+
diff --git a/htsworkflow/settings/myrada.py b/htsworkflow/settings/myrada.py
deleted file mode 100644 (file)
index aad547a..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-# configure debugging
-import os
-from .local import *
-
-DEBUG=True
-
-INTERNAL_IPS = ('127.0.0.1',)
-
-MIDDLEWARE_CLASSES.extend([
-    #'debug_toolbar.middleware.DebugToolbarMiddleware',
-])
-
-DATABASES = {
-    #'default': {
-        #'ENGINE': 'django.db.backends.sqlite3',
-        #'NAME': os.path.join(settings.BASE_DIR, '..', 'fctracker.db'),
-    #}
-    'default': {
-        'ENGINE': 'django.db.backends.postgresql_psycopg2',
-        'HOST': 'felcat.caltech.edu',
-        'USER': 'diane',
-        'NAME': 'htsworkflow-django1.7',
-    }
-
-}
-