|
| 1 | +import os.path |
| 2 | +import os |
| 3 | + |
| 4 | +#CHROMOSOMES_PATH = '/net/mraid11/export/dcstor/Ofir/GenomesData/' |
| 5 | +CHROMOSOMES_PATH = '/clineage/hg19/' |
| 6 | +DEBUG=True |
| 7 | +# S_MAIN = '/net/mraid11/export/dcstor/LINEAGE/Hiseq/NSR2/fastq_human/Output' |
| 8 | +S_MAIN = '/data_store' |
| 9 | +# DATABASES = { |
| 10 | +# 'default': { |
| 11 | +# 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. |
| 12 | +# 'NAME': 'clineage_prod', # Or path to database file if using sqlite3. |
| 13 | +# 'USER': 'dcsoft', # Not used with sqlite3. |
| 14 | +# 'PASSWORD': '164d8ae81bd7e38a163ea2e144114b25', # Not used with sqlite3. |
| 15 | +# 'HOST': 'db', # Set to empty string for localhost. Not used with sqlite3. |
| 16 | +# 'PORT': '3306', # Set to empty string for default. Not used with sqlite3. |
| 17 | +# } |
| 18 | +# } |
| 19 | +DATABASES = { |
| 20 | + 'default': { |
| 21 | + 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. |
| 22 | + 'HOST': os.environ['MYSQL_HOST'], # Set to empty string for localhost. Not used with sqlite3. |
| 23 | + 'PORT': os.environ['MYSQL_PORT'], # Set to empty string for default. Not used with sqlite3. |
| 24 | + 'NAME': os.environ['MYSQL_DATABASE'], # Or path to database file if using sqlite3. |
| 25 | + 'USER': os.environ['MYSQL_USER'], # Not used with sqlite3. |
| 26 | + 'PASSWORD': os.environ['MYSQL_PASSWORD'], # Not used with sqlite3. |
| 27 | + } |
| 28 | +} |
| 29 | + |
| 30 | +ALLOWED_HOSTS = [ |
| 31 | + '*', |
| 32 | +] |
| 33 | + |
| 34 | +SECRET_KEY = 'gcd6^pq#l78%_jg3@2jf)csum=_d%5-pa5!3hma4g&e*lxx+m$' |
| 35 | + |
| 36 | +DATA_STORE = '/data_store' |
| 37 | +# NOA_MATLAB = r'/home/dcsoft/s/Ofir/noa_matlab/Code/' |
| 38 | +NOA_MATLAB = r'' |
| 39 | +# IGORS_CODE = r'/home/dcsoft/s/Ofir/igor_tree_reconstruction_20170808/' |
0 commit comments