-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
56 lines (42 loc) · 1.12 KB
/
app.js
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
46
47
48
49
50
51
52
53
54
55
56
const express = require('express');
const path = require('path');
const bodyParser = require('body-parser');
const mongoose = require('mongoose');
const config = require('./config/database');
require('dotenv').config();
mongoose.Promise = require('bluebird');
mongoose.connect(config.database, {
useMongoClient: true
});
let db = mongoose.connection;
// Check connection
db.once('open', function(){
console.log('Connected to MongoDB');
});
// Check for DB errors
db.on('error', function(err){
console.log(err);
});
// Init App
var app = express();
// Bring in ShortURL Model
let ShortURL = require('./models/shorturl');
// Load View Engine
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'pug');
// Port Number
const port = process.env.PORT || 8080;
// Body Parser Middleware
app.use(bodyParser.urlencoded({extended: false}));
app.use(bodyParser.json());
// Home Route
app.get('/', function(req, res){
res.render('index');
});
// Route Files
let api = require('./routes/api');
app.use('/', api);
// Start Server
app.listen(port, function(){
console.log('Server started on port ' + port + '...');
});