-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
55 lines (43 loc) · 1.31 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
43
44
45
46
47
48
49
50
51
52
53
54
55
const express = require('express');
const bcrypt = require('bcrypt-nodejs');
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: 'user',
password: '',
database: 'smart-brain'
}
});
const app = express();
app.use(express.json());
app.use(cors());
app.get('/', (req, res) => {
res.send('It is working!')});
app.post('/signin', signin.handleSignin(knex, bcrypt));
app.post('/register', register.handleRegister(knex, bcrypt));
app.get('/profile/:id', profile.handleProfile(knex));
app.put('/image',
(req, res) => {
image.handleImage(req, res, knex)});
app.post('/imageurl',
(req, res) =>
{image.handleApiCall(req, res)})
app.listen(process.env.PORT || 3000, ()=> {
console.log(`App is running on port: ${process.env.PORT}`);
})
bcrypt.hash("bacon", null, null,
function (err, hash) { });
/*
The general structure of our backend:
/ --> res this is working
/signin --> POST = success /OR fail
/register --> POST = user
/profile/:userid --> GET = user
/image --> PUT --> user
*/