Skip to content

Instantly share code, notes, and snippets.

@infoburp
Created March 7, 2015 19:31
Show Gist options
  • Save infoburp/48a160d564d9b7fa83fa to your computer and use it in GitHub Desktop.
Save infoburp/48a160d564d9b7fa83fa to your computer and use it in GitHub Desktop.
constants.js
var Constants = {
Cookie_Secret: process.env.COOKIE_SECRET,
// Key and secret used to connect to twitter app, can't be shared
Twitter: {
KEY: '*********************',//process.env.TWITTER_KEY,
SECRET: '*********************'//process.env.TWITTER_SECRET,
//CALLBACK: '*********************'//process.env.TWITTER_CALLBACK,
},
Imgur: {
ID: '*********************',//process.env.IMGUR_ID,
SECRET: '*********************'//process.env.IMGUR_SECRET
},
MongoURL: "mongodb://localhost/local",
RedisURL: "redis://localhost:6379",
BaseUrl: "http://127.0.0.1"
};
module.exports = Constants;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment