forked from getsentry/integration-platform-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
40 lines (31 loc) · 904 Bytes
/
.env.sample
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
# Python Backend
# Specify the Flask environment
FLASK_ENV=development
FLASK_APP=src
# Specify the arguments for 'flask run'
FLASK_RUN_HOST=0.0.0.0
FLASK_RUN_PORT=5100
# TypeScript Backend
# Specify the Node environment
NODE_ENV=development
# Specify the Express listening port
EXPRESS_LISTEN_PORT=5200
# TypeScript Frontend
# Note: Anything prefixed with REACT_APP_ is exposed!
REACT_APP_PORT=3000
REACT_APP_BACKEND_URL=REPLACE_ME_WITH_YOUR_NGROK_ADDRESS
REACT_APP_SENTRY_DSN=REPLACE_ME_WITH_YOUR_DSN
# Database
# Specify access credentials and database
POSTGRES_USER=admin
POSTGRES_PASSWORD=needbetterpassword
POSTGRES_DB=sentrydemo
# Specify options
DB_PORT=6000
TEST_DB_PORT=6001
# Misc
# Specify the sentry instance
SENTRY_URL=https://sentry.io
# Specify the public integration details
SENTRY_CLIENT_ID=REPLACE_ME_WITH_YOUR_CLIENT_ID
SENTRY_CLIENT_SECRET=REPLACE_ME_WITH_YOUR_CLIENT_SECRET