2020-02-06 22:04:01 -05:00
|
|
|
import os
|
|
|
|
basedir = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
|
|
|
NAME = "CR Connect Workflow"
|
|
|
|
DEVELOPMENT = True
|
|
|
|
SQLALCHEMY_DATABASE_URI = "postgresql://crc_user:crc_pass@db:5432/crc_dev"
|
|
|
|
|
2020-05-11 13:46:26 -04:00
|
|
|
# %s/%i placeholders expected for uva_id and study_id in various calls.
|
|
|
|
PB_USER_STUDIES_URL = "http://pb:5001/pb/user_studies?uva_id=%s"
|
|
|
|
PB_INVESTIGATORS_URL = "http://pb:5001/pb/investigators?studyid=%i"
|
|
|
|
PB_REQUIRED_DOCS_URL = "http://pb:5001/pb/required_docs?studyid=%i"
|
|
|
|
PB_STUDY_DETAILS_URL = "http://pb:5001/pb/study?studyid=%i"
|
|
|
|
|
2020-02-06 22:04:01 -05:00
|
|
|
print('\n\n*** USING INSTANCE CONFIG ***\n\n')
|