This repository was archived by the owner on Jan 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Database Setup
Noah Husby edited this page Jan 16, 2022
·
2 revisions
Note: Only MongoDB supports a multi-proxy installation. Expect syncing issues / overridden data when using multiple proxies and SQL.
##########################################################################################################
# database
#--------------------------------------------------------------------------------------------------------#
# Settings for the database
##########################################################################################################
database = {
# Which database should be used?
# "MONGO" for MongoDB (Required for multi-proxy installations)
# "SQL" for SQL
# "LOCAL" for local storage only
type = "LOCAL"
# The username for the database.
user = ""
# The password for the database.
password = ""
# The name of the database.
database = ""
# The host IP for the database.
host = ""
# The port for the database.
port = 3306
}