19 lines
428 B
Bash
19 lines
428 B
Bash
|
#
|
||
|
# You should copy this file to '.env'
|
||
|
# and set all settings there.
|
||
|
#
|
||
|
|
||
|
|
||
|
# Paths to SQLite databases...
|
||
|
DDNET_SQLITE_PATH = "data/ddnet.sqlite"
|
||
|
DDNSS_SQLITE_PATH = "data/skindata.sqlite"
|
||
|
MSGPACK_PATH = "data/players.msgpack"
|
||
|
|
||
|
# Should the server try to generate the database?
|
||
|
GENERATE_DB = "true"
|
||
|
|
||
|
# The port on which the server listens...
|
||
|
PORT = 12345
|
||
|
|
||
|
# The API paginates. How many entries per page?
|
||
|
ENTRIES_PER_PAGE = 50
|