-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
23 lines (23 loc) · 909 Bytes
/
.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
# If you set this value, this user upon signing up will have all permissions.
ROOT_USER_STEAMID=76561198025040446
STEAM_API_KEY=YOURSTEAMAPIKEY
# What domain steam would like to show and redirect your users back to after openid is finished.
OPENID_REALM=lucyleague.net
# If specified, what port of this domain should be redirected to
OPENID_PORT=
# Where should our server run?
# 0.0.0.0 to bind on all IPs.
SERVER_ADDR=0.0.0.0
SERVER_PORT=8080
# NOTE! PG__USER and PG__DBNAME must be equal for NOW. Hopefully patch in the future?
# TODO!
PG__USER=example
PG__DBNAME=example
PG__PASSWORD=testing
# NOTE! If using docker compose, use the SERVICE NAME (db) instead of an actual IP. Docker will route
# the host internally within the compose network using this name.
PG__HOST=127.0.0.1
# On docker compose, use 5432
PG__PORT=5432
# How many threads should we allocate in deadpool_postgres?
PG__POOL.MAX_SIZE=16