2020-09-08 14:02:00 +02:00
|
|
|
const fs = require('fs');
|
|
|
|
const filename='./config.json';
|
|
|
|
const configfile = require(filename);
|
|
|
|
|
|
|
|
if(!configfile["discord-prefix"])
|
|
|
|
configfile["discord-prefix"]=process.env.DISCORD_PREFIX;
|
|
|
|
if(!configfile["token"])
|
2020-09-18 03:30:29 +02:00
|
|
|
configfile["token"]=process.env.DISCORD_TOKEN;
|
2020-09-08 14:02:00 +02:00
|
|
|
if(!configfile["server-adress"])
|
|
|
|
configfile["server-adress"]=process.env.JELLYFIN_SERVER_ADDRESS;
|
|
|
|
if(!configfile["jellyfin-username"])
|
|
|
|
configfile["jellyfin-username"]=process.env.JELLYFIN_USERNAME;
|
|
|
|
if(!configfile["jellyfin-password"])
|
|
|
|
configfile["jellyfin-password"]=process.env.JELLYFIN_PASSWORD;
|
|
|
|
if(!configfile["jellyfin-app-name"])
|
|
|
|
configfile["jellyfin-app-name"]=process.env.JELLYFIN_APP_NAME;
|
|
|
|
|
|
|
|
|
|
|
|
fs.writeFile(filename, JSON.stringify(configfile,null,1), (err) => {
|
|
|
|
if (err) return console.log(err);
|
|
|
|
});
|