-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
40 lines (29 loc) · 1.04 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
import express from 'express';
import bcrypt from 'bcrypt-nodejs';
import cors from 'cors';
import knex from 'knex';
import register from './controllers/register.js';
import signin from './controllers/signin.js';
import profile from './controllers/profile.js';
import image from './controllers/image.js';
const db = knex({
client: 'pg',
connection: {
host : '127.0.0.1',
user : 'Pablo',
password : '',
database : 'smart-brain'
}
});
const app = express();
app.use(express.json());
app.use(cors())
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.post('/imageurl', (req, res) => {image.handleApiCall(req, res)})
app.listen(3000, ()=> {
console.log('app is running on post 3000');
})