From: Diane Trout Date: Wed, 11 Jan 2017 23:02:54 +0000 (-0800) Subject: dev laptop has a new hostname X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=8aea11595f452e640c34c1d68dd784536b2276d4 dev laptop has a new hostname --- diff --git a/htsworkflow/settings/amarana.py b/htsworkflow/settings/amarana.py new file mode 100644 index 0000000..aad547a --- /dev/null +++ b/htsworkflow/settings/amarana.py @@ -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 index aad547a..0000000 --- a/htsworkflow/settings/myrada.py +++ /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', - } - -} -