Skip to content

Commit

Permalink
Update passport.js
Browse files Browse the repository at this point in the history
  • Loading branch information
germanattanasio authored Feb 14, 2017
1 parent fd18c4e commit 1d70588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/passport.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const TwitterStrategy = require('passport-twitter').Strategy;
const cfenv = require('cfenv');
const appEnv = cfenv.getAppEnv();

const callbackURL = progress.env.CF_APP_URL || (appEnv.isLocal ? 'http://localhost:3000' : appEnv.url);
const callbackURL = process.env.CF_APP_URL || (appEnv.isLocal ? 'http://localhost:3000' : appEnv.url);

const strategyOptions = {
consumerKey: process.env.TWITTER_CONSUMER_KEY,
Expand Down

0 comments on commit 1d70588

Please sign in to comment.