[project @ move brandon's pipeline handling code into gaworkflow.pipeline]
[htsworkflow.git] / ga_frontend / settings.py
1 import os
2
3 # Django settings for elandifier project.
4
5 DEBUG = True
6 TEMPLATE_DEBUG = DEBUG
7
8 ADMINS = (
9     # ('Your Name', 'your_email@domain.com'),
10 )
11
12 MANAGERS = ADMINS
13
14 DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
15 DATABASE_NAME = '/home/king/proj/ga_frontend/elandifier.db'             # Or path to database file if using sqlite3.
16 DATABASE_USER = ''             # Not used with sqlite3.
17 DATABASE_PASSWORD = ''         # Not used with sqlite3.
18 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
19 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
20
21 # Local time zone for this installation. Choices can be found here:
22 # http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
23 # although not all variations may be possible on all operating systems.
24 # If running in a Windows environment this must be set to the same as your
25 # system time zone.
26 TIME_ZONE = 'America/Los_Angeles'
27
28 # Language code for this installation. All choices can be found here:
29 # http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
30 # http://blogs.law.harvard.edu/tech/stories/storyReader$15
31 LANGUAGE_CODE = 'en-us'
32
33 SITE_ID = 1
34
35 # If you set this to False, Django will make some optimizations so as not
36 # to load the internationalization machinery.
37 USE_I18N = True
38
39 # Absolute path to the directory that holds media.
40 # Example: "/home/media/media.lawrence.com/"
41 MEDIA_ROOT = ''
42
43 # URL that handles the media served from MEDIA_ROOT.
44 # Example: "http://media.lawrence.com"
45 MEDIA_URL = ''
46
47 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
48 # trailing slash.
49 # Examples: "http://foo.com/media/", "/media/".
50 ADMIN_MEDIA_PREFIX = '/media/'
51
52 # Make this unique, and don't share it with anybody.
53 SECRET_KEY = '(ekv^=gf(j9f(x25@a7r+8)hqlz%&_1!tw^75l%^041#vi=@4n'
54
55 # List of callables that know how to import templates from various sources.
56 TEMPLATE_LOADERS = (
57     'django.template.loaders.filesystem.load_template_source',
58     'django.template.loaders.app_directories.load_template_source',
59 #     'django.template.loaders.eggs.load_template_source',
60 )
61
62 MIDDLEWARE_CLASSES = (
63     'django.middleware.common.CommonMiddleware',
64     'django.contrib.sessions.middleware.SessionMiddleware',
65     'django.contrib.auth.middleware.AuthenticationMiddleware',
66     'django.middleware.doc.XViewMiddleware',
67 )
68
69 ROOT_URLCONF = 'ga_frontend.urls'
70
71 TEMPLATE_DIRS = (
72     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
73     # Always use forward slashes, even on Windows.
74     # Don't forget to use absolute paths, not relative paths.
75     "/home/king/proj/ga_frontend/templates"
76 )
77
78 INSTALLED_APPS = (
79     'django.contrib.admin',
80     'django.contrib.auth',
81     'django.contrib.contenttypes',
82     'django.contrib.sessions',
83     'django.contrib.sites',
84     'ga_frontend.eland_config',
85     'ga_frontend.fctracker',
86     'django.contrib.databrowse',
87 )
88
89 # Project specific settings
90 UPLOADTO_HOME = '/home/king/proj/ga_frontend/uploads'
91 UPLOADTO_CONFIG_FILE = os.path.join(UPLOADTO_HOME, 'eland_config')
92 UPLOADTO_ELAND_RESULT_PACKS = os.path.join(UPLOADTO_HOME, 'eland_results')
93 UPLOADTO_BED_PACKS = os.path.join(UPLOADTO_HOME, 'bed_packs')
94