1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00

Added missing www file

bin/www file was ignored in .gitignore. Added missing file.
This commit is contained in:
Jovan Popovic
2016-06-22 13:31:31 +02:00
parent 62f1c65969
commit 09786217ee
2 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,5 @@
node_modules/*
bin/*
bin/*.dll
obj/*
*.sln
*.log

View File

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