Blame view

server.js 591 Bytes
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
1
  // Modules ====================================================================
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
2
  var express = require('express');
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
3
  var bodyParser = require('body-parser');
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
4
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
5
  // Application ================================================================
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
6
  
06133cd9   Geoffrey PREUD'HOMME   Suppression des d...
7
  var app = express();
be07ef10   Geoffrey PREUD'HOMME   Port par défaut c...
8
9
  var config = require('./config/config.js');
  var port = process.env.PORT || config.port;
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
10
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
11
  // Tricks
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
12
  app.use(bodyParser.json());
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
13
14
15
  app.use(bodyParser.urlencoded({
      extended: true
  }));
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
16
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
17
18
  // Routes
  require('./app/routes')(app);
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
19
  
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
20
21
  app.listen(port);
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
22
  console.log('La magie du CI se passe au port ' + port);
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
23
  
2f593328   Geoffrey PREUD'HOMME   Linting
24
  exports = module.exports = app;