-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
37 lines (29 loc) · 867 Bytes
/
index.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
const express = require('express');
const path = require('path');
const bodyParser = require('body-parser');
const cors = require('cors');
const passport = require('passport');
const mongoose = require('mongoose');
const config = require('./config/database');
const port = 3000;
const app = express();
mongoose.connect(config.uri, (err) => {
if(err) {
console.log('Could NOT connect to database: ' + err);
}
else {
console.log('Connected to database: ' + config.uri);
}
});
app.use(cors());
// parse application/json
app.use(bodyParser.json());
// Set Static Folder
app.use(express.static(path.join(__dirname, 'public')));
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, 'public/index.html'));
});
// Start listening to th eport
app.listen(port, () => {
console.log('server started on port: ', port);
})