add new default config options

This commit is contained in:
VetheonGames 2024-03-28 00:59:57 -06:00
parent 2e7506f0b7
commit c8fb9a9803

View File

@ -14,6 +14,12 @@ func SetDefaultConfig() error {
// Logging level: DEBUG, INFO, WARNING, ERROR // Logging level: DEBUG, INFO, WARNING, ERROR
"LOG_LEVEL": "INFO", "LOG_LEVEL": "INFO",
"MYSQL_USER": "mysql",
"MYSQL_PASSWORD": "pass",
"MYSQL_HOST": "mysql",
"MYSQL_PORT": "3306",
"MYSQL_DB_NAME": "backgo",
// API server configuration // API server configuration
"API_SERVER_BIND_ADDRESS": "0.0.0.0", // IP address to bind the API server "API_SERVER_BIND_ADDRESS": "0.0.0.0", // IP address to bind the API server
"API_SERVER_PORT": "6678", // Port for the API server "API_SERVER_PORT": "6678", // Port for the API server