-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
32 lines (27 loc) · 943 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
const express = require('express')
const credentials = require("./creds");
const app = express()
const bodyParser = require('body-parser')
const mongoose = require('mongoose')
const cors = require('cors');
const applicationsRoute = require("./routes/applications")
const moment = require('moment'); // require
app.use(cors({
origin: ['https://inceptioncloud.net', 'null']
}))
app.use(bodyParser.json())
// Routes
app.get('/', (req, res) => {
res.redirect('https://inceptioncloud.net/de/apply/')
})
app.use('/applications', applicationsRoute)
// Connect to database
mongoose.connect(`mongodb://${credentials.db.username}:${credentials.db.password}@45.85.219.34:27017/dragonfly`, {
useUnifiedTopology: true,
useNewUrlParser: true,
})
.then(() => console.log('DB Connected!'))
.catch(err => {
console.log(`DB Connection Error: ${err.message}`);
});
app.listen(4000, console.log('Listening on Port 4000'))