source: Dev/trunk/src/server/heroku.js @ 463

Last change on this file since 463 was 463, checked in by hendrikvanantwerpen, 12 years ago

Working towards Heroku deployment, restructuring for that and to allow coffee builds.

File size: 196 bytes
Line 
1var app = require('./app').App({
2    couchDbURL: 'http://localhost:5984/qed'
3});
4
5var port = process.env.PORT || 5000;
6app.listen(port, function() {
7    console.log('Listening on port',port);
8});
Note: See TracBrowser for help on using the repository browser.