forked from BioAnalyticResource/BAR_API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBAR_API.cfg
More file actions
executable file
·46 lines (45 loc) · 2.41 KB
/
BAR_API.cfg
File metadata and controls
executable file
·46 lines (45 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Test System configuration.
# Please set DEBUG and TESTING to False and THREADED to True in production
# Do not use DEBUG = True in production
DEBUG = True
THREADED = False
TESTING = True
# SQLAlchemy configuration
# Note this configuration is only for Travis.
# Do not use empty root passwords on your server
SQLALCHEMY_TRACK_MODIFICATIONS = False
SQLALCHEMY_BINDS = {
'annotations_lookup': 'mysql://root:root@localhost/annotations_lookup',
'arabidopsis_ecotypes': 'mysql://root:root@localhost/arabidopsis_ecotypes',
'arachis': 'mysql://root:root@localhost/arachis',
'cannabis': 'mysql://root:root@localhost/cannabis',
'canola_nssnp' : 'mysql://root:root@localhost/canola_nssnp',
'dna_damage': 'mysql://root:root@localhost/dna_damage',
'embryo': 'mysql://root:root@localhost/embryo',
'eplant2': 'mysql://root:root@localhost/eplant2',
'eplant_poplar' : 'mysql://root:root@localhost/eplant_poplar',
'eplant_rice' : 'mysql://root:root@localhost/eplant_rice',
'eplant_soybean' : 'mysql://root:root@localhost/eplant_soybean',
'eplant_tomato' : 'mysql://root:root@localhost/eplant_tomato',
'fastpheno' : 'mysql://root:root@localhost/fastpheno',
'germination': 'mysql://root:root@localhost/germination',
'homologs_db' : 'mysql://root:root@localhost/homologs_db',
'interactions_vincent_v2': 'mysql://root:root@localhost/interactions_vincent_v2',
'kalanchoe': 'mysql://root:root@localhost/kalanchoe',
'klepikova': 'mysql://root:root@localhost/klepikova',
'llama3': 'mysql://root:root@localhost/llama3',
'phelipanche' : 'mysql://root:root@localhost/phelipanche',
'physcomitrella_db' : 'mysql://root:root@localhost/physcomitrella_db',
'poplar_nssnp' : 'mysql://root:root@localhost/poplar_nssnp',
'rice_interactions': 'mysql://root:root@localhost/rice_interactions',
'selaginella': 'mysql://root:root@localhost/selaginella',
'shoot_apex': 'mysql://root:root@localhost/shoot_apex',
'silique': 'mysql://root:root@localhost/silique',
'single_cell': 'mysql://root:root@localhost/single_cell',
'soybean_nssnp' : 'mysql://root:root@localhost/soybean_nssnp',
'strawberry' : 'mysql://root:root@localhost/strawberry',
'striga' : 'mysql://root:root@localhost/striga',
'tomato_nssnp' : 'mysql://root:root@localhost/tomato_nssnp',
'tomato_sequence' : 'mysql://root:root@localhost/tomato_sequence',
'triphysaria' : 'mysql://root:root@localhost/triphysaria'
}