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:
@ -1,5 +1,5 @@
|
||||
node_modules/*
|
||||
bin/*
|
||||
bin/*.dll
|
||||
obj/*
|
||||
*.sln
|
||||
*.log
|
||||
@ -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);
|
||||
});
|
||||
Reference in New Issue
Block a user