-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
env.template
49 lines (41 loc) · 983 Bytes
/
env.template
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
47
48
49
# Stage status to start server:
# - "dev", for start server without graceful shutdown
# - "prod", for start server with graceful shutdown
STAGE_STATUS="dev"
NEXT_PUBLIC_BACKEND_URL="http://localhost:5000"
# Server settings:
SERVER_ENDPOINT="localhost:5000"
SERVER_READ_TIMEOUT=60
# RabbitMQ settings:
AMQP_USER="guest"
AMQP_PASSWORD="CHANGEME"
AMQP_HOST="rabbitmq"
AMQP_PORT=5672
AMQP_VHOST="/"
AMQP_TLS=false
# Database settings:
DB_HOST="localhost"
DB_PORT=5431
DB_NAME="pixeleye"
DB_USERNAME="guest"
DB_PASSWORD="CHANGEME"
DB_SSL_MODE="disable"
DB_MAX_CONNECTIONS=100
DB_MAX_IDLE_CONNECTIONS=10
DB_MAX_LIFETIME_CONNECTIONS=2h
# Github integration settings:
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
GITHUB_APP_ID=
GITHUB_APP_NAME=
GITHUB_APP_PRIVATE_KEY=
NEXT_PUBLIC_GITHUB_APP_NAME=
# S3 settings:
S3_BUCKET="pixeleye"
S3_ENDPOINT=
S3_ACCESS_KEY_ID=
S3_KEY_SECRET=
# ORY settings:
ORY_URL="http://localhost:4433"
NEXT_PUBLIC_ORY_URL="http://localhost:4433"
ORY_API_KEY=