-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
36 lines (25 loc) · 1.02 KB
/
server.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
const express = require('express');
const app = express();
const PORT = process.env.PORT || 5000;
const connectDB = require('./config/db'); // including database
const path = require('path');
const cors = require('cors');
connectDB(); // calling database connection function
app.use(express.static('public')); // including static middleware (for static html and css files)
app.use(express.json()); // to enable data reception by express server as json data
//Cors
const corsOptions = {origin: process.env.ALLOWED_CLIENTS.split(',')}
app.use(cors(corsOptions));
// setting up Template engine
app.set('views', path.join(__dirname, '/views'));
app.set('view engine', 'ejs');
// Routes
app.use('',require('./routes/home'))
app.use('/howWorks',require('./routes/howWorks'))
app.use('/api/files',require('./routes/files'))
app.use('/files', require('./routes/show'))
app.use('/files/download', require('./routes/download'));
// Listening server connection
app.listen(PORT, ()=>{
console.log(`Listening on port ${PORT}`);
});