Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save vitorhidalgo/24a6ff0cff31f135b64787cebd2217bc to your computer and use it in GitHub Desktop.

Select an option

Save vitorhidalgo/24a6ff0cff31f135b64787cebd2217bc to your computer and use it in GitHub Desktop.
server.js
var app = require('./config/express')();
require('./config/database')('mysql://root:[email protected]:3306/auction');
app.listen
(
app.get('port'),
function()
{
console.log(`Express Server on port ${app.get('port')}`);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment