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.
13 lines
320 B
13 lines
320 B
#!/usr/bin/env node
|
|
var debug = require('debug')('my-application');
|
|
var app = require('../app');
|
|
|
|
app.set('port', process.env.PORT || 3002);
|
|
|
|
var server = app.listen(app.get('port'), function() {
|
|
debug('Express server listening on port ' + server.address().port);
|
|
|
|
if (app.runOnStartup) {
|
|
app.runOnStartup();
|
|
}
|
|
});
|
|
|