Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Clearing Config File
Browse files Browse the repository at this point in the history
  • Loading branch information
amoshaviv committed Jun 9, 2013
1 parent b005891 commit 6ef0d73
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,16 @@ var path = require('path')

module.exports = {
development: {
// db: 'mongodb://localhost/mean-dev',
db: 'mongodb://admin:password@ds027308.mongolab.com:27308/meanstack',
db: 'mongodb://localhost/mean-dev',
root: rootPath,
notifier: notifier,
app: {
name: 'MEAN - A Modern Stack - Development'
},
facebook: {
clientID: "455818271176818",
clientSecret: "db6c579d1fcdc9a3980bc4aade0e3aaf",
callbackURL: "http://local.meanstack.com:3000/auth/facebook/callback"
clientID: "APP_ID",
clientSecret: "APP_SECRET",
callbackURL: "http://localhost:3000/auth/facebook/callback"
},
twitter: {
clientID: "CONSUMER_KEY",
Expand All @@ -43,8 +42,7 @@ module.exports = {
},
},
test: {
//db: 'mongodb://localhost/mean-test',
db: 'mongodb://admin:password@ds027308.mongolab.com:27308/meanstack',
db: 'mongodb://localhost/mean-test',
root: rootPath,
notifier: notifier,
app: {
Expand Down Expand Up @@ -72,17 +70,16 @@ module.exports = {
}
},
production: {
//db: 'mongodb://localhost/mean-test',
db: 'mongodb://admin:password@ds027308.mongolab.com:27308/meanstack',
db: 'mongodb://localhost/mean',
root: rootPath,
notifier: notifier,
app: {
name: 'MEAN - A Modern Stack - Production'
},
facebook: {
clientID: "455818271176818",
clientSecret: "db6c579d1fcdc9a3980bc4aade0e3aaf",
callbackURL: "http://meanstack.heroku.com/auth/facebook/callback"
clientID: "APP_ID",
clientSecret: "APP_SECRET",
callbackURL: "http://localhost:3000/auth/facebook/callback"
},
twitter: {
clientID: "CONSUMER_KEY",
Expand Down

0 comments on commit 6ef0d73

Please sign in to comment.