-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.js
More file actions
42 lines (32 loc) · 1.12 KB
/
server.js
File metadata and controls
42 lines (32 loc) · 1.12 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
42
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 profile = require('./controllers/profile')
const images = require('./controllers/images')
const db = knex({
client: 'pg',
connection: {
host: '127.0.0.1',
user: 'ravi',
password: '',
database: 'smart-brain'
}
});
const PORT = process.env.PORT;
//middle-ware
const app = express();
app.use(bodyParser.json())
app.use(cors())
app.get('/', (req, res) => res.json("its working"))
app.post('/signin', signin.handleSignin(db, bcrypt))
app.post('/register', (req,res) => register.handleRegister(req, res, db, bcrypt))
app.get('/profile/:id', (req,res) => profile.handleProfile(req,res,db))
app.put('/images', (req,res) => images.handleImages(req,res,db))
app.post('/imagesurl', (req,res) => images.handleAPICall(req,res))
app.listen(PORT || 3000, () => {
console.log(`Server is running on port ${PORT || 3000}`);
})