Changed to settings filename to avoid conflict

This commit is contained in:
Travis Shivers 2020-06-29 01:16:13 -05:00
parent de4941b799
commit f64b8bb27a
2 changed files with 11 additions and 1 deletions

View File

@ -26,7 +26,7 @@ nconf
'default_slplayer_quality', 'default_slplayer_quality',
]), ]),
}) })
.file({ file: 'config.json' }); .file({ file: 'settings.json' });
nconf.defaults(defaults); nconf.defaults(defaults);

10
settings.json Normal file
View File

@ -0,0 +1,10 @@
{
"servers": [
{
"name": "Custom Server 1",
"location": "Custom Location",
"url": "http://vps.conicaw.me:9999",
"image": "https://mycustomserver.com/logo.png"
}
]
}