-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
39 lines (30 loc) · 1.02 KB
/
server.js
File metadata and controls
39 lines (30 loc) · 1.02 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
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('./controller/register');
const signin =require('./controller/signin');
const profile = require('./controller/profile');
const image = require('./controller/image');
const db = knex({
client: 'pg',
connection: {
host : '127.0.0.1',
user : 'postgres',
password : 'test',
database : "'smart-brain'"
}
});
const app = express();
app.use(cors())
app.use(bodyParser.json());
console.log('hi')
app.get('/', (req, res)=> {res.send(database.users)})
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) => {profile.handleProfileGet(req,res,db)} )
app.put('/image', (req,res) => {image.handleImage(req,res,db)})
app.listen(3000, ()=> {
console.log('app is running on port 3000');
})