2021-12-07 19:58:18 +00:00
|
|
|
# Full path to the LEGO Universe client
|
2024-01-08 15:13:28 +00:00
|
|
|
CLIENT_PATH=./client
|
2021-12-07 19:58:18 +00:00
|
|
|
# Updates NET_VERSION in CMakeVariables.txt
|
2024-01-08 15:13:28 +00:00
|
|
|
NET_VERSION=171022
|
2021-12-07 21:08:53 +00:00
|
|
|
# make sure this is a long random string
|
2024-12-11 16:58:37 +00:00
|
|
|
# generate a "SHA 256-bit Key" from here: https://gchq.github.io/CyberChef/#recipe=Pseudo-Random_Number_Generator(256,'Hex')
|
2021-12-08 06:33:34 +00:00
|
|
|
ACCOUNT_MANAGER_SECRET=
|
|
|
|
# Should be the externally facing IP of your server host
|
|
|
|
EXTERNAL_IP=localhost
|
2024-12-18 00:07:07 +00:00
|
|
|
|
|
|
|
# The database type that will be used.
|
|
|
|
# Acceptable values are `sqlite`, `mysql`, `mariadb`, `maria`.
|
|
|
|
# Case insensitive.
|
|
|
|
DATABASE_TYPE=mariadb
|
|
|
|
SQLITE_DATABASE_PATH=resServer/dlu.sqlite
|
|
|
|
|
2021-12-08 06:33:34 +00:00
|
|
|
# Database values
|
2022-01-05 16:46:59 +00:00
|
|
|
# Be careful with special characters here. It is more safe to use normal characters and/or numbers.
|
2021-12-09 07:10:29 +00:00
|
|
|
MARIADB_USER=darkflame
|
2024-01-08 15:13:28 +00:00
|
|
|
MARIADB_PASSWORD=
|
2023-08-04 02:38:33 +00:00
|
|
|
MARIADB_DATABASE=darkflame
|
2024-12-18 00:07:07 +00:00
|
|
|
SKIP_ACCOUNT_CREATION=1
|