-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.js
More file actions
45 lines (40 loc) · 2.09 KB
/
server.js
File metadata and controls
45 lines (40 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// set up ======================================================================
var express = require('express');
var app = express(); // create our app w/express
var router = express.Router(); // use express router for our routes
var morgan = require('morgan'); // log requests to the console
var bodyParser = require('body-parser'); // pull information from HTML POST
var nodemailer = require('nodemailer');
var credentials = require('./config/settings.js');//require('./../credentials');
var port = process.env.PORT || 5000;
var mailTransport = nodemailer.createTransport(
{ service: 'Gmail',
host: "smtp.gmail.com",
auth: {
user: credentials.gmail.user,
pass: credentials.gmail.password,
}
});
/*
mailTransport.sendMail({
from: '"Rene Midouin" <renemidouin@gmail.com>',
to: 'renemidouin@gmail.com',
subject: 'Your Meadowlark Travel Tour',
text: 'Thank you for booking your trip with Meadowlark Travel. ' +
'We look forward to your visit!',
}, function(err){
if(err) console.error( 'Unable to send email: ' + err );
});
*/
// configuration ===============================================================
app.use(express.static(__dirname + '/src')); // set the static files location /public/img will be /img for users
app.use('/api/documentation', express.static(__dirname + '/doc')); // set the static files location /public/img will be /img for users
app.use(morgan('dev')); // log every request to the console
app.use(bodyParser.urlencoded({extended: true})); // parse application/x-www-form-urlencoded
app.use(bodyParser.json()); // parse application/json
app.use(bodyParser.json({ type: 'application/vnd.api+json' })); // parse application/vnd.api+json as json/
require('./api/api')(router); // API routers
app.use('/', router);
app.listen(port, function() {
console.log('Listening on port '+ port);
});