forked from MarechJ/hll_rcon_tool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.dev.env
More file actions
26 lines (22 loc) · 715 Bytes
/
example.dev.env
File metadata and controls
26 lines (22 loc) · 715 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
# Game server
export HLL_HOST=
export HLL_PORT=
export HLL_PASSWORD=
# CRCON Game server identifier
export SERVER_NUMBER=1
# Docker
export REDIS_IMAGE=redis:alpine
export POSTGRES_IMAGE=postgres:12-alpine
# Database
# if you ran full installation first ensure the DB_PASSWORD match the one from .env
export HLL_DB_PASSWORD=
export HLL_DB_NAME=rcon
export HLL_DB_USER=rcon
export HLL_DB_HOST=localhost
export HLL_DB_HOST_PORT=5432
export HLL_DB_URL=postgresql://${HLL_DB_USER}:${HLL_DB_PASSWORD}@${HLL_DB_HOST}:${HLL_DB_HOST_PORT}/${HLL_DB_NAME}
# Redis
export HLL_REDIS_HOST=localhost
export HLL_REDIS_HOST_PORT=6379
export HLL_REDIS_DB=1
export HLL_REDIS_URL=redis://${HLL_REDIS_HOST}:${HLL_REDIS_HOST_PORT}/1