Created
March 7, 2015 19:31
-
-
Save infoburp/48a160d564d9b7fa83fa to your computer and use it in GitHub Desktop.
constants.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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