-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.template
33 lines (27 loc) · 856 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
# Clerk credentials
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=""
CLERK_SECRET_KEY=""
# Postgress credentials
POSTGRES_URL=""
POSTGRES_PRISMA_URL=""
POSTGRES_URL_NO_SSL=""
POSTGRES_URL_NON_POOLING=""
POSTGRES_USER=""
POSTGRES_HOST=""
POSTGRES_PASSWORD=""
POSTGRES_DATABASE=""
# Max amount of matches a user can create
NEXT_PUBLIC_MAX_MATCHES_PER_USER="100"
# Max amount of players a user can add to a match
NEXT_PUBLIC_MAX_PLAYERS_PER_MATCH="100"
# Max amount of allowed players when adding them in a batch
NEXT_PUBLIC_MAX_PLAYERS_BATCH="50"
# Default player level
NEXT_PUBLIC_DEFAULT_PLAYER_LEVEL="5"
# Telegram API KEYS
TELEGRAM_BOTID=""
TELEGRAM_CHATID=""
# Upload image size limit (in MB)
NEXT_PUBLIC_IMAGE_UPLOAD_SIZE_LIMIT="10"
# Chromium path
CHROMIUM_PATH="https://github.com/Sparticuz/chromium/releases/download/v123.0.1/chromium-v123.0.1-pack.tar"