Better config defaults

This commit is contained in:
Garrett Mills 2020-08-23 14:07:23 -05:00
parent 97fd755cbd
commit 4523341255
Signed by: garrettmills
GPG Key ID: D2BF5FBA8298F246
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ const app_config = {
* The name of the application.
* Used through-out the application as the proper display name.
*/
name: env("APP_NAME", "Flitter"),
name: env("APP_NAME", "Starship CoreID"),
/*
* URL of the application.

View File

@ -3,7 +3,7 @@ const database_config = {
/*
* The name of the database.
*/
name: env("DATABASE_NAME", 'flitter'),
name: env("DATABASE_NAME", 'coreid'),
/*
* The hostname of the database server.

View File

@ -20,7 +20,7 @@ const server_config = {
* The logging level. Usually, 1-4.
* The higher the level, the more information is logged.
*/
level: env("LOGGING_LEVEL", 1),
level: env("LOGGING_LEVEL", 2),
include_timestamp: env("LOGGING_TIMESTAMP", false),
},