Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions config/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ module.exports = {
secretToken: process.env.SECRET_TOKEN || 'secretToken',
env: 'production',
facebookAuth: {
clientID: process.env.FACEBOOK_ID, // your App ID
clientSecret: process.env.FACEBOOK_SECRET, // your App Secret
callbackURL: process.env.FACEBOOK_CALLBACK
clientID: process.env.FACEBOOK_ID || require('./dev').facebookAuth.clientID, // your App ID
clientSecret: process.env.FACEBOOK_SECRET || require('./dev').facebookAuth.clientSecret, // your App Secret
callbackURL: process.env.FACEBOOK_CALLBACK || require('./dev').facebookAuth.callbackURL
}
}
}
}
Loading