-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
42 lines (36 loc) · 1.15 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
37
38
39
40
41
42
const express=require('express');
const bodyParser=require('body-parser');
const bcrypt=require('bcryptjs');
const cors=require('cors');
const register=require('./controllers/register');
const signin=require('./controllers/signin');
const profile=require('./controllers/profile');
const image=require('./controllers/image');
const knex = require('knex')({
client: 'pg',
connection: {
host : '127.0.0.1',
user : 'postgres',
password : '',
database : 'smartbrain'
}
});
const app=express();
app.use(bodyParser.json());
app.use(cors());
app.get('/',(req,res)=>{res.send(knex.users)})
app.post('/signin', (req,res)=>{signin.handleSignin(req,res,knex,bcrypt)})
app.post('/register', (req,res)=>{register.handleRegister(req,res,knex,bcrypt)})
app.get('/profile/:id',(req,res)=>{profile.handleProfileGet(req,res,knex)})
app.put('/image',(req,res)=>{image.handleImage(req,res,knex)})
app.post('/imageurl',(req,res)=>{image.handleApiCall(req,res)})
app.listen('3000',()=>{
console.log('app is running at port 3000');
})
/*
/ --> res with GET=all users
/signin -->POST=success/fail
/register -->POST=user
/profile/:userId -->GET=user
/image -->PUT=entries
*/