Blame view

server.js 799 Bytes
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
1
  // Modules ====================================================================
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
2
  var express = require('express');
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
3
  var mongoose = require('mongoose');
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
4
  var bodyParser = require('body-parser');
2f593328   Geoffrey PREUD'HOMME   Linting
5
  var cookieParser = require('cookie-parser');
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
6
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
7
  // Application ================================================================
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
8
  
06133cd9   Geoffrey PREUD'HOMME   Suppression des d...
9
  var app = express();
be07ef10   Geoffrey PREUD'HOMME   Port par défaut c...
10
11
  var config = require('./config/config.js');
  var port = process.env.PORT || config.port;
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
12
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
13
14
  // Connection à la BDD
  var db = require('./config/db');
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
15
  mongoose.connect(db.url);
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
16
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
17
  // Tricks
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
18
  app.use(bodyParser.json());
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
19
20
21
  app.use(bodyParser.urlencoded({
      extended: true
  }));
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
22
  
8bb442a5   Geoffrey PREUD'HOMME   Possibilité de se...
23
  // Cookie-parser
2f593328   Geoffrey PREUD'HOMME   Linting
24
  app.use(cookieParser());
8bb442a5   Geoffrey PREUD'HOMME   Possibilité de se...
25
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
26
27
  // Routes
  require('./app/routes')(app);
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
28
  
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
29
30
  app.listen(port);
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
31
  console.log('La magie du CI se passe au port ' + port);
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
32
  
2f593328   Geoffrey PREUD'HOMME   Linting
33
  exports = module.exports = app;