Initial commit.

This commit is contained in:
Eric Woodward
2018-01-07 19:12:11 -05:00
commit f9a65c10b8
235 changed files with 5036 additions and 0 deletions

9
bin/www Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/nodejs
var debug = require('debug')('my-application');
var app = require('../app');
app.set('port', process.env.PORT || 8302);
var server = app.listen(app.get('port'), function() {
console.log('Express server listening on port ' + server.address().port);
});