-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env
46 lines (37 loc) · 1.63 KB
/
.env
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
# Environment variables for local development
# DO NOT PUT SECRETS IN THIS FILE - use Cloud Storage instead
ALLOWED_CLIENT_URL="http://localhost:*"
AUTH0_DOMAIN='cidc-test.auth0.com'
AUTH0_CLIENT_ID='Yjlt8LT5vXFJw1Z8m8eaB5aZO26uPyeD'
PRISM_ENCRYPT_KEY='key'
ENV='dev'
DEBUG=True
TEST_POSTGRES_URI = 'postgresql://cidcdev:1234@localhost:5432/cidctest'
# Uncomment to use local cloud functions
# DEV_CFUNCTIONS_SERVER='http://localhost:3001'
# Connect to a local postgres instance
POSTGRES_URI='postgresql://cidcdev:1234@localhost:5432/cidc'
# Connect to our Cloud SQL Postgres instance.
# Note: POSTGRES_URI must be commented out for this to work
# CLOUD_SQL_SOCKET_DIR='<YOUR HOME DIRECTORY>/.cloudsql/'
# CLOUD_SQL_INSTANCE_NAME='cidc-dfci-staging:us-central1:cidc-postgresql-staging'
# CLOUD_SQL_DB_USER='cidcuser'
# CLOUD_SQL_DB_NAME='cidc-staging'
GOOGLE_CLOUD_PROJECT='cidc-dfci-staging'
GOOGLE_ACL_DATA_BUCKET='cidc-data-staging-acl'
GOOGLE_DATA_BUCKET='cidc-data-staging'
GOOGLE_SECRETS_BUCKET='cidc-secrets-staging'
GOOGLE_INTAKE_BUCKET='cidc-intake-staging'
GOOGLE_UPLOAD_BUCKET='cidc-uploads-staging'
GOOGLE_EPHEMERAL_BUCKET='cidc-ephemeral-staging'
GOOGLE_UPLOAD_ROLE='projects/cidc-dfci-staging/roles/objectUploader'
GOOGLE_LISTER_ROLE='projects/cidc-dfci-staging/roles/CustomRoleLister'
GOOGLE_UPLOAD_TOPIC='uploads'
GOOGLE_EMAILS_TOPIC='emails'
GOOGLE_PATIENT_SAMPLE_TOPIC='patient_sample_update'
GOOGLE_ARTIFACT_UPLOAD_TOPIC='artifact_upload'
GOOGLE_GRANT_DOWNLOAD_PERMISSIONS_TOPIC='grant_download_perms'
CSMS_CLIENT_ID='csms-client'
CSMS_CLIENT_SECRET='csms-secret'
CSMS_BASE_URL='https://csms-url.gov'
CSMS_TOKEN_URL='https://csms-url.gov/token'