Skip to content

Commit

Permalink
rename MONGO_DB to MONGO_DB_SHORT for nodejitsu deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Hotchkiss committed Dec 22, 2011
1 parent 9b78e8e commit dd0e362
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/bkln.me/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ var url = require('url'),
short = require('short'),
app = express.createServer(),
port = process.env.PORT || 8000,
MONGO_DB = process.env.MONGO_DB || 'mongodb://localhost/short';
MONGO_DB_SHORT = process.env.MONGO_DB_SHORT || 'mongodb://localhost/short';

short.connect(MONGO_DB);
short.connect(MONGO_DB_SHORT);


app.configure(function() {
Expand Down

0 comments on commit dd0e362

Please sign in to comment.