-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
41 lines (38 loc) · 1.3 KB
/
server.js
File metadata and controls
41 lines (38 loc) · 1.3 KB
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
const express=require('express');
const bodyparser=require('body-parser');
const bcrypt=require('bcrypt-nodejs');
const cors=require('cors');
const knex=require('knex');
const register=require('./controllers/register');
const signin=require('./controllers/signin');
const profileGet=require('./controllers/profile')
const image=require('./controllers/image')
const db=knex({
client: 'pg',
connection: {
connectionString:process.env.DATABASE_URL,
ssl: {
rejectUnauthorized: false
},
},
});
const app=express();
app.use(bodyparser.json())
app.use(cors())
app.get('/', (req,res)=>{
res.send("it is workin")
})
app.post('/signin', (req,res)=>{signin.handleSignin(req,res,db,bcrypt)})
app.post('/register', (req,res)=>{register.handleRegister(req, res, db, bcrypt)})
app.get('/profile/:id', (req,res)=>{profileGet.handleProfileGet(req, res, db)})
app.put('/image', (req,res)=>{image.handleImage(req, res, db)})
app.listen(process.env.PORT || 3001,()=>{
console.log(`app is running in port ${process.env.PORT}`)
})
/*end points we need for the face-detection front end
/signin POST -->res.send(sucess)
/register POST --> new user
/profile/:user id GET -->user
/image PUT --> this path records the amount of time the user detects a face in an image and also shouws his/her rank
NODE_TLS_REJECT_UNAUTHORIZED=0
*/