forked from gettakaro/takaro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
89 lines (66 loc) · 2.13 KB
/
.env.example
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#################################
# POSTGRES
#################################
POSTGRES_USER=takaro
POSTGRES_PASSWORD=takaro-dev
POSTGRES_DB=takaro
POSTGRES_HOST=127.0.0.1
POSTGRES_PORT=5432
#################################
# TAKARO
#################################
# These are created in Hydra, see the docs.
ADMIN_CLIENT_ID="CHANGE_THIS"
ADMIN_CLIENT_SECRET="CHANGE_THIS"
# This is the secret used to sign the JWT tokens
# Set it to a random string of your choice
JWT_SECRET="CHANGE_THIS"
TAKARO_HOST=http://127.0.0.1:13000
TAKARO_FRONTEND_HOST=http://127.0.0.1:13001
VITE_API=http://127.0.0.1:13000
# Set this to a long, random string of your choice
POSTGRES_ENCRYPTION_KEY=THIS_SHOULD_BE_CHANGED
# Enabled OpenTelmetry tracing
# https://opentelemetry.io/docs/concepts/what-is-opentelemetry/
# Requires additional infrastructure to be setup
TRACING_ENABLED=false
# Queue concurrency. You will only need to touch these if you are running at "large-ish" scale.
HOOKS_QUEUE_CONCURRENCY=5
COMMANDS_QUEUE_CONCURRENCY=5
CRONJOBS_QUEUE_CONCURRENCY=5
# Sentry error tracing
SENTRY_DSN=""
BASE_URL="http://127.0.0.1:13000"
# Discord settings
DISCORD_CLIENT_ID=""
DISCORD_CLIENT_SECRET=""
DISCORD_BOT_TOKEN=
# https://steamcommunity.com/dev/apikey
STEAM_API_KEY=""
#################################
# AWS
#################################
FUNCTIONS_EXECUTION_MODE="local"
AWS_REGION=eu-west-3
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_S3_BUCKET_NAME=
#################################
# Dev data
#################################
TEST_HTTP_TARGET=${TAKARO_HOST}
# Local mail server used for developing and testing
MAILHOG_URL="http://127.0.0.1:8025"
# Local path to your steam Rust installation folder containing the icons
RUST_ICONS_PATH="/home/catalysm/.local/share/Steam/steamapps/common/Rust/Bundles/items"
TAKARO_DEV_USER_PASSWORD=takaro_is_cool
TAKARO_DEV_USER_NAME=takaro
TAKARO_DEV_DOMAIN_NAME=localdev.local
TAKARO_DEV_CHAT_BRIDGE_ENABLED=false
TAKARO_DEV_CHAT_BRIDGE_CHANNEL_ID=""
TAKARO_DEV_RUST_HOST=""
TAKARO_DEV_RUST_PORT=28016
TAKARO_DEV_RUST_PASSWORD=""
TAKARO_DEV_SDTD_HOST=""
TAKARO_DEV_SDTD_ADMIN_USER=""
TAKARO_DEV_SDTD_ADMIN_PASSWORD=""