-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
37 lines (31 loc) · 1.12 KB
/
server.js
File metadata and controls
37 lines (31 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
const express = require('express');
const bcrypt = require('bcrypt-nodejs');
const app = express();
const cors = require('cors');
const knex = require('knex');
const register = require('./controllers/register');
const signIn = require('./controllers/signin');
const profile = require('./controllers/profile');
const image = require('./controllers/image');
const postgres = knex({
client: 'pg',
connection: {
host : '127.0.0.1',
user : 'postgres',
password : 'P244w0rd',
database : 'smartbrain'
}
});
app.use(express.json());
app.use(cors());
app.get('/', (req,res) => {
res.send('it is working');
})
app.post('/signin', (req,res) => {signIn.handleSignIn(req,res,postgres,bcrypt)})
app.post('/register', (req,res) => {register.handleRegister(req,res,postgres, bcrypt)})
app.get('/profile/:id', (req,res) => {profile .handleProfileGet(req,res,postgres)})
app.put('/image', (req,res) => {image.handleImage(req,res, postgres)})
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}');
})