-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
102 lines (79 loc) · 3.3 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
const express = require('express');
const env = require('./config/environment');
const cookieParser = require('cookie-parser');
const app = express();
const port = 8000;
const expressLayouts = require('express-ejs-layouts');
const db = require('./config/mongoose');
// used for session cookie
const session = require('express-session');
const passport = require('passport');
const passportLocal = require('./config/passport-local-strategy');
const passportJWT = require('./config/passport-jwt-strategy');
const passportGoogle = require('./config/passport-google-oauth2-strategy');
const MongoStore = require('connect-mongo').default;
const sassMiddleware =require('node-sass-middleware');
const flash = require('connect-flash');
const customMware = require('./config/middleware');
// Setup the chat server to be used with socket.io
const chatServer = require('http').Server(app);
const chatSockets = require('./config/chat_sockets').chatSockets(chatServer);
chatServer.listen(5000);
console.log('chat server is listening on port 5000');
const path = require('path');
// Note: you must place sass-middleware *before* `express.static` or else it will not work.
app.use(sassMiddleware({
src: path.join(__dirname, env.asset_path, 'scss'),
dest: path.join(__dirname, env.asset_path, 'css'),
debug: true, // Put false in production mode
outputStyle: 'extended', // To not show in one line
prefix: '/css' // Important --- Where prefix is at <link rel="stylesheets" href="/css/style.css"/>
}));
app.use(express.urlencoded());
app.use(cookieParser());
//Setting static files
//app.use(express.static('env.asset_path'));
app.use(express.static(path.join(__dirname, env.asset_path)));
// make the uploads path available to the browser
app.use('/uploads', express.static(__dirname + '/uploads'));
// Setting layouts for our page
app.use(expressLayouts);
// Extract styles and scripts from sub pages into the layout
app.set('layout extractStyles', true);
app.set('layout extractScripts', true);
// set up the view engine
app.set('view engine', 'ejs');
app.set('views', './views');
// mongo-session is used to store the session cookie iin the db
app.use(session({
name: 'codeial',
// TODO change the secret before deployment in production mode
secret: env.session_cookie_key,
saveUninitialized: false,
resave: false, // Don't save same data again and again
cookie: { // Timeout of the session in millisec, bro try kroo save krke.... ok____ it's still throwing error
maxAge: (1000 * 60 * 100)
},
store: MongoStore.create(
{
mongoUrl: 'mongodb://localhost/codeial_development',
autoRemove: 'disabled'
},
function(err){
console.log(err || 'connect-mongo setup ok');
})
}));
app.use(passport.initialize());
app.use(passport.session());
app.use(passport.setAuthenticatedUser);
app.use(flash()); // Use only after session is used
app.use(customMware.setFlash);
// use express router
app.use('/', require('./routes')); // OR (./routes/index.js) -->> /index.js is added by default :)
app.listen(port, function(err){
if (err){
// console.log('Error in running the server: ', err);
console.log(`Error in running the server: ${err}`); // interpolation
}
console.log(`Server is running on port: ${port}`);
});