Skip to content

Instantly share code, notes, and snippets.

@techlab23
Created February 26, 2018 02:39
Show Gist options
  • Save techlab23/02bcbb5f8488c89f0efb5b56c685b38c to your computer and use it in GitHub Desktop.
Save techlab23/02bcbb5f8488c89f0efb5b56c685b38c to your computer and use it in GitHub Desktop.
.env file to be used in production settings.
module.exports = {
NODE_ENV: '"production"',
API_KEY: JSON.stringify(process.env.API_KEY) ,
AUTH_DOMAIN: JSON.stringify(process.env.AUTH_DOMAIN) ,
DATABASE_URL: JSON.stringify(process.env.DATABASE_URL) ,
PROJECT_ID: JSON.stringify(process.env.PROJECT_ID) ,
STORAGE_BUCKET: JSON.stringify(process.env.STORAGE_BUCKET) ,
MESSENGER_SENDER_ID: JSON.stringify(process.env.MESSENGER_SENDER_ID)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment