Hello not sure if this is the place to put this question, i have created a custom egg that runs a nodejs application. this is working fine however the application has a config file im trying to edit these values via the startup tab in the server
in the egg i have this entered inthe configuration box.
{
"config.js": {
"parser": "file",
"find": {
"token": "{server.build.env.TOKEN}",
}
}
}
export default {
debug: false,
token: "",
};
im trying to edit the token line i have a varible setup called TOKEN however looking at the config.js file the server is not pulling the data entered in the startup tab
Any ideas?