You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
713 B
JavaScript
36 lines
713 B
JavaScript
5 years ago
|
/**
|
||
|
* Created by Syed Afzal
|
||
|
*/
|
||
|
require('./config/config');
|
||
|
|
||
|
const express = require('express');
|
||
|
const path = require('path');
|
||
|
const cookieParser = require('cookie-parser');
|
||
|
const bodyParser = require('body-parser');
|
||
|
const cors = require('cors');
|
||
|
const db = require('./db');
|
||
|
|
||
|
|
||
|
|
||
|
const app = express();
|
||
|
|
||
|
//connection from db here
|
||
|
db.connect(app);
|
||
|
|
||
|
app.use(cors());
|
||
|
app.use(bodyParser.json());
|
||
|
app.use(bodyParser.urlencoded({ extended: false }));
|
||
|
app.use(cookieParser());
|
||
|
app.use(express.static(path.join(__dirname, 'public')));
|
||
|
|
||
|
// adding routes
|
||
|
require('./routes')(app);
|
||
|
|
||
|
app.on('ready', () => {
|
||
|
app.listen(3000, () => {
|
||
|
console.log("Server is up on port", 3000)
|
||
|
});
|
||
|
})
|
||
|
|
||
|
module.exports = app;
|