first commit

This commit is contained in:
=
2017-03-24 15:30:44 -03:00
commit ef9816cb82
427 changed files with 74976 additions and 0 deletions

7
server/server.js Executable file
View File

@@ -0,0 +1,7 @@
var http = require('http')
,app = require('./config/express');
http.createServer(app).listen(3000, function() {
console.log('Servidor escutando na porta: ' + this.address().port);
});