mirror of
https://github.com/sartography/cr-connect-bpmn.git
synced 2025-02-03 04:13:36 +00:00
15 lines
569 B
Python
15 lines
569 B
Python
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"
|
|
|
|
# %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"
|
|
|
|
print('\n\n*** USING INSTANCE CONFIG ***\n\n')
|