-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.sh
More file actions
35 lines (18 loc) · 823 Bytes
/
env.sh
File metadata and controls
35 lines (18 loc) · 823 Bytes
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
#!/bin/sh
export AUTH0_CLIENT_ID=jGIf2pd3f44B1jqvOai30BIKTZanYBfU
export AUTH0_CLIENT_SECRET=ldzqVaVEbqhwjM5KtZ79sG8djZpAVK8Z7qieVcC3vRjI4NirgcinKSBpPwk6mYYP
export AUTH0_AUDIENCE=
export AUTH_V2_URL=
export AUTH_V2_CLIENT_ID=
export AUTH_V3_URL=
export ADMIN_CREDENTIALS_USERNAME=
export ADMIN_CREDENTIALS_PASSWORD=
export COPILOT_CREDENTIALS_USERNAME=
export COPILOT_CREDENTIALS_PASSWORD=
export USER_CREDENTIALS_USERNAME=
export USER_CREDENTIALS_PASSWORD=
export AUTH_SECRET=
export DATABASE_URL="postgresql://johndoe:mypassword@localhost:5532/resourceapi?schema=public&statement_timeout=60000"
export MEMBER_DB_URL="postgresql://johndoe:mypassword@localhost:5632/memberdb"
export CHALLENGE_DB_URL="postgresql://johndoe:mypassword@localhost:5732/challengedb"
export RESOURCE_SERVICE_PRISMA_TIMEOUT=10000