Skip to content

Instantly share code, notes, and snippets.

@not-an-aardvark
Created November 3, 2015 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save not-an-aardvark/c230554263a8f9d54808 to your computer and use it in GitHub Desktop.
Save not-an-aardvark/c230554263a8f9d54808 to your computer and use it in GitHub Desktop.
module.exports = {
port: 1337,
environment: "development",
reddit: {
clientID: "CLIENTID GOES HERE",
clientIDSecret: "CLIENTIDSECRET GOES HERE",
redirectURL: "http://localhost:1337/auth/reddit/callback",
adminRefreshToken: "ADMINREFRESHTOKEN GOES HERE"
},
connections: {
"default": "mongo",
mongo: {
adapter: 'sails-mongo',
host: 'localhost',
port: 27017,
user: '',
password: '',
database: 'fapp'
}
},
session: {
adapter: 'mongo',
host: 'localhost',
port: 27017,
db: 'fapp',
collection: 'sessions'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment