In my node app, I want to set production and development in my config.js file.
For that I have all most set all thing but I'm still missing something.
I want to get config data like database credential from config file based on my development mode. If I upload on live then app will use live cred. On other hand if I used local then it should be use local cred.
module.exports = function () {
    console.log("Process env is ::: ", process.env.NODE_ENV);
    if (process.env.NODE_ENV == 'production') {
        return {
            db : {
                host:'localhost',
                batabase:'dbname',
                username:'',
                password:''
            }
        }   
    } else {
        return {
            db : {
                host:'localhost',
                batabase:'dbname',
                username:'',
                password:''
            }
        }
    }
};
I have taken ref from this answer
 
     
     
    