-
Notifications
You must be signed in to change notification settings - Fork 10
Update .env.example with latest settings #208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: qa
Are you sure you want to change the base?
Changes from 2 commits
0b96a40
4a8285c
04815bc
8456533
efe3b68
9527f55
bf40dec
586d547
edab883
e75370d
3b5b96c
3aa4781
4ad1ff3
7c975a0
fe61540
119923e
474da8f
b61bfe7
48517cb
12e016c
f0adc14
8858519
c3cb6f5
650f05e
c2b288a
12cc4b8
cdb0e2d
241b9ca
e705f00
c75b46f
4c76682
2d8591b
311d7c7
b7ded88
73ad565
900e5c2
88e02a5
40f0459
ab0feab
ccce5c9
f94d74b
909e102
fab736e
2110487
c8c8785
095b909
b88cab7
e03a0ec
b0d39d8
51a0175
baf2e77
b83127d
7b9cb98
902f128
81a7e79
e63451b
b6d4ce8
774873b
4f49f12
6c8178b
df0241f
5c1a42e
12bf8f4
d622deb
904d7aa
ae57160
760bb71
5da50bb
951ae04
92a4d28
fc6bef4
f6d9d05
8e18cbc
30a0279
9f4eed6
559901d
c36fc1f
a59e707
eab333b
69e5be2
154ce11
1590972
45e44a3
ae5da0d
202ceb1
71ba959
4a80454
2dfdd46
c19d09e
82b2b5c
d969008
e65d2e6
679cdf1
784e5ff
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,55 @@ | ||
| # Please modify the following environment variables accordingly. | ||
|
|
||
| CTIMS_ENV=development | ||
| CTIMS_API_VERSION=2.1 | ||
|
|
||
|
|
||
| #DATABASE_URL=mysql://ctims:ctims@localhost:3306/ctims | ||
| #AES 256 key, it can be generated using https://cloak.47ng.com/key | ||
| #PRISMA_FIELD_ENCRYPTION_KEY=k1.aesgcm256.RhSAzMU4Af5OKXUYQosqNLMRK1Nc3PicRp5iWa6I7Ko= | ||
|
|
||
|
|
||
| NEXTAUTH_SECRET=dAbxJF2DRzqwGYn+BWKdj8o9ieMri4FWsmIRn77r2F8= | ||
|
||
| REACT_APP_API_URL=http://localhost:3333/api | ||
| NEXTAUTH_URL=http://localhost:3000 | ||
| NEXT_AUTH_API_URL=http://backend:3333/api | ||
| NEXTAUTH_API_URL=http://backend:3333/api | ||
| NEXT_PUBLIC_SIGNOUT_REDIRECT_URL=http://localhost:3000 | ||
| NEXT_PUBLIC_TRIAL_LOCK_PING_TIME_MS=240000 | ||
| NEXT_TRIAL_LOCK_CLEAR_TIME_MS=300000 | ||
|
|
||
|
|
||
| #keycloak settings | ||
| KEYCLOAK_URL=<KEYCLOAK_URL> | ||
| KEYCLOAK_CLIENT_ID=<client_id> | ||
| # Keycloak client uuid. This is different from the id above. | ||
| # If you cannot find it in the client settings, the URL usually includes it. Example: http://localhost:8080/admin/master/console/#/ctims/clients/3813811a-***/settings, 3813811a-*** is the uuid | ||
| KEYCLOAK_CLIENT_UUID=<uuid> | ||
| # We suggest creating a new realm instead of using the default master realm. | ||
| KEYCLOAK_REALM=<realm> | ||
| # This is the client secret that stored under the Credentials tab in the client page. | ||
| # The realm needs to have client authentication enabled to see the Credentials tab. | ||
| KEYCLOAK_CLIENT_SECRET=<client_secret> | ||
| KEYCLOAK_ADMIN_CLIENT_ID=ctims-admin # a client with sevice account enabled | ||
| # a client with sevice account enabled | ||
| # It does not need to be a separate client. If your above client already has service account enabled, use the same ID here. | ||
| KEYCLOAK_ADMIN_CLIENT_ID=ctims-admin | ||
| KEYCLOAK_ADMIN_CLIENT_SECRET=<secret> | ||
| KEYCLOAK_TOKEN_ENDPOINT=https://cbioportal.pmgenomics.ca/newauth/realms/UHN/protocol/openid-connect/token | ||
| NEXT_PUBLIC_ENABLE_MATCHMINER_INTEGRATION=true | ||
| NEXT_PUBLIC_TRIAL_LOCK_PING_TIME_MS=240000 | ||
| NEXT_TRIAL_LOCK_CLEAR_TIME_MS=300000 | ||
| # This is the endpoint to get access token. | ||
| KEYCLOAK_TOKEN_ENDPOINT= | ||
|
|
||
| #matchminer settings - only if matchminer integration is enabled | ||
| NEXT_PUBLIC_ENABLE_MATCHMINER_INTEGRATION = true | ||
| MM_API_URL=<matchminer-api-url>/api | ||
| MM_API_TOKEN= | ||
|
|
||
| #Rabbitmq settings for MatchMiner communication | ||
| RABBITMQ_URL="rabbitmq" | ||
|
||
| RABBITMQ_PORT=5672 | ||
| MATCHMINER_SEND_QUEUE='run_match' | ||
| MATCHMINER_RECEIVE_QUEUE="match_message" | ||
|
|
||
| # email notification settings | ||
| MAIL_HOST=mail.uhn.ca | ||
|
||
| MAIL_USERNAME=<uhn_tid> | ||
| MAIL_PASSWORD=<leave_blank> | ||
| CTIMS_SUPPORT_EMAIL=<ctims_support_email> | ||
| CTIMS_URL=<ctims_website_url> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove key