-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
65 lines (56 loc) · 1.44 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
const express=require('express')
const mysql=require('mysql')
const dotenv=require('dotenv')
const hbs=require("hbs")
const path=require('path')
const cookie=require('cookie-parser')
const bcryptjs=require('bcryptjs')
const logger=require('morgan')
const session=require('express-session')
const port=4700
dotenv.config({path:"./.env"})
const db=mysql.createConnection({
host:"localhost",
user:"root",
password:"",
database:"kevin"
})
const app=express()
app.use(cookie())
app.use(session({
secret:"kenya",
resave:false,
saveUninitialized:true
}))
app.use(logger('dev'))
app.use(express.json())
app.use(express.urlencoded({extend:false}))
//app.set('view engine','hbs')
const public=path.join(__dirname,'./public')
app.use(express.static(public))
//app.use(express.static('view/image'))
app.use('/questions',require('./routes/api/questions'))
app.use('/auth',require('./controllers/auth'))
//app.use('/answers',require("./routes/api/answers"))
//const hash=bcrypt.hash(password,8)
app.get('/app',(req,res)=>{
res.send("welcome")
})
app.get('/register',(req,res)=>{
res.send("opening registration page")
res.render("register")
})
app.get('/login',(req,res)=>{
session=req.body.session
if(session.userid){
res.send("opening login page")
res.render("login")
}
})
app.listen(port,(err)=>{
if(err){
console.log(err)
}else{
console.log(`server running on ${port}`)
}
})