Blame view

server.js 1.04 KB
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
1
  // Modules ====================================================================
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
2
3
  var express = require('express');
  var app = express();
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
4
5
  var mongoose = require('mongoose');
  var morgan = require('morgan');
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
6
7
  var bodyParser = require('body-parser');
  var methodOverride = require('method-override');
2f593328   Geoffrey PREUD'HOMME   Linting
8
  var cookieParser = require('cookie-parser');
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
9
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
10
  // Application ================================================================
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
11
  
be07ef10   Geoffrey PREUD'HOMME   Port par défaut c...
12
13
  var config = require('./config/config.js');
  var port = process.env.PORT || config.port;
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
14
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
15
16
  // Connection à la BDD
  var db = require('./config/db');
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
17
  mongoose.connect(db.url);
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
18
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
19
  // Tricks
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
20
  app.use(bodyParser.json());
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
21
22
23
  app.use(bodyParser.json({
      type: 'application/vnd.api+json'
  }));
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
24
25
26
  app.use(bodyParser.urlencoded({
      extended: true
  }));
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
27
28
  app.use(methodOverride('X-HTTP-Method-Override'));
  
8bb442a5   Geoffrey PREUD'HOMME   Possibilité de se...
29
  // Cookie-parser
2f593328   Geoffrey PREUD'HOMME   Linting
30
  app.use(cookieParser());
8bb442a5   Geoffrey PREUD'HOMME   Possibilité de se...
31
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
32
  // Dossier public
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
33
34
  app.use(express.static(__dirname + '/public'));
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
35
36
  // Routes
  require('./app/routes')(app);
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
37
  
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
38
39
  app.listen(port);
  
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
40
  console.log('La magie du CI se passe au port ' + port);
894b21fa   Geoffrey PREUD'HOMME   Application MEAN ...
41
  
2f593328   Geoffrey PREUD'HOMME   Linting
42
  exports = module.exports = app;