-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
74 lines (39 loc) · 1.52 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 bodyParser = require('body-parser');
const bcrypt = require('bcrypt');
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')
// Initializing the database
const db = knex({
client: 'pg',
connection: {
connectionString : process.env.DATABASE_URL,
ssl: true,
}
});
const app = express();
app.use(bodyParser.json());
// To fix google chorme error: Access to fetch at 'http://localhost:3000/' from origin 'http://localhost:3001' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
app.use(cors());
// INITIAL APP
app.get('/', (req, res) => {
res.send('it is working!');
})
// SIGN IN controllers/signin.js
app.post('/signin', (req, res) => { signin.handleSignin(req, res, db, bcrypt) })
//REGISTER controllers/register.js
app.post('/register', (req, res) => { register.handleRegister(req, res, db, bcrypt) })
// PROFILE
app.get('/profile/:id', (req, res) => { profile.handleProfile(req, res, db) })
//IMAGE COUNT
app.put('/image', (req, res) => { image.handleImage(req, res, db) })
//IMAGE API
app.post('/imageurl', (req, res) => { image.handleApiCall(req, res) })
// PORT LISTENING
app.listen(process.env.PORT || 3000, () => {
console.log(`app is running on port ${process.env.PORT}`);
})