-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.sample
More file actions
46 lines (37 loc) · 923 Bytes
/
.env.sample
File metadata and controls
46 lines (37 loc) · 923 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
36
37
38
39
40
41
42
43
44
45
46
# app environment
APP_ENV=development
# web app
NEXT_PUBLIC_API=http://localhost:8080
NEXT_PUBLIC_BASE_URL=http://planora.sbs:3000
NEXT_DOMAIN=planora.sbs
NODE_ENV=development
# server
API_HOST=127.0.0.1
API_PORT=8080
API_BASE_URL=http://localhost:8080
# web server
WEB_BASE_URL=http://localhost:3000
# database
PG_DATABASE_URL=postgres://planora-admin:planora-secret@localhost:5432/primary
# cache
REDIS_URL=redis://localhost:6379
# auth
JWT_SECRET=your_secret_key
JWT_ACCESS_EXPIRY_MINUTES=15
JWT_REFRESH_EXPIRY_DAYS=15
# smtp
SMTP_HOST=localhost
SMTP_PORT=2500
SMTP_USERNAME=
SMTP_PASSWORD=
# s3
AWS_S3_ENDPOINT=http://localhost:9000
AWS_ACCESS_KEY_ID=minioadmin
AWS_SECRET_ACCESS_KEY=minioadmin
AWS_SESSION_TOKEN=secret_session_token
AWS_REGION=us-west-2
# observability
OTEL_SDK_DISABLED=true
OTEL_SERVICE_NAME=arx-gatehouse
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
OTEL_METRIC_EXPORT_INTERVAL=10000