forked from ncats/RDAS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsysvars.py
More file actions
27 lines (19 loc) · 1.02 KB
/
sysvars.py
File metadata and controls
27 lines (19 loc) · 1.02 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
import os
current_version = 1.3
current_user = 'leadmandj'
base_directory_name = 'alert'
base_path = '/home/{current_user}/{base_directory_name}/'.format(current_user=current_user, base_directory_name=base_directory_name)
backup_path = '{base_path}backup/'.format(base_path=base_path)
transfer_path = '{base_path}transfer/'.format(base_path=base_path)
migrated_path = '{base_path}migrated/'.format(base_path=base_path)
dump_dirs = ['clinical','pubmed','grant','gard']
ct_files_path = '{base_path}/clinical/src/'.format(base_path=base_path)
pm_files_path = '{base_path}/pubmed/src/'.format(base_path=base_path)
gnt_files_path = '{base_path}/grant/src/'.format(base_path=base_path)
gard_files_path = '{base_path}/gard/src/'.format(base_path=base_path)
ct_db = 'clinicaltest'
pm_db = 'pubmedtest'
gnt_db = 'granttest'
gard_db = 'gardtest'
epiapi_url = "http://ncats-rdas-lnx-dev.ncats.nih.gov:80/api/"
rdas_urls = {'dev':'rdas-dev.ncats.nih.gov','test':"ncats-neo4j-lnx-test1.ncats.nih.gov",'prod':"ncats-neo4j-lnx-prod1.ncats.nih.gov"}