You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
347 B

8 years ago
#!/usr/bin/env node
var debug = require('debug')('my-application');
var app = require('../app');
6 years ago
app.set('port', process.env.PORT || process.env.BTCEXP_PORT || 3002);
8 years ago
var server = app.listen(app.get('port'), function() {
debug('Express server listening on port ' + server.address().port);
if (app.runOnStartup) {
app.runOnStartup();
}
8 years ago
});