Skip to content

Commit

Permalink
heroku fix
Browse files Browse the repository at this point in the history
  • Loading branch information
I Plan Websites committed Apr 1, 2012
1 parent 5ab9bd8 commit 45c2523
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: node --debug web.js
web: node web.js
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
"googlemaps": "0.1.6",
"mongodb": ">= 0.9.6-7",
"underscore": "1.3.1",
"mongojs": "0.3.2"
"mongojs": "0.3.2",
"sendgrid": "0.2.1",
"stripe": "1.1.0"
},

"engines": {
Expand Down
7 changes: 3 additions & 4 deletions web.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ var _ = require('underscore')._;
///////////////////////////////////////////////////////////////////
// Database
////////////////////////////////////////////////////////////////
/*

// app.js
var databaseUrl = process.env.MONGOHQ_URL ; //""; // "username:password@example.com/mydb"
var collections = ["users", "events"]
var db = require("mongojs").connect(databaseUrl, collections);
*/


///////////////////////////////////////////////////////////////////
// email server
////////////////////////////////////////////////////////////////
/*

var SendGrid = require('sendgrid').SendGrid;
var sendgrid = new SendGrid(
process.env.SENDGRID_USERNAME,
Expand Down Expand Up @@ -76,7 +76,6 @@ app.get('/pay', function(req, res){



*/
///////////////////////////////////////////////////////////////////
// DB EXAMPLES
////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 45c2523

Please sign in to comment.