Skip to content

Commit

Permalink
changing api token to be env var
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Breed committed Jun 2, 2011
1 parent 34a36bf commit e2d0bd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hack-bot.coffee
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
token = require('./token')
token = process.env.TOKEN

Sandbox = require('sandbox')
Campfire = require('./lib/node-campfire/lib/campfire').Campfire
Expand Down
2 changes: 1 addition & 1 deletion hack-bot.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var Campfire, Google, Reminder, Sandbox, google, instance, logger, quack, room_id, sandbox, token;
token = require('./token');
token = process.env.TOKEN;
Sandbox = require('sandbox');
Campfire = require('./lib/node-campfire/lib/campfire').Campfire;
Google = require('./lib/google');
Expand Down

0 comments on commit e2d0bd4

Please sign in to comment.