-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
39 lines (29 loc) · 971 Bytes
/
Copy pathserver.js
File metadata and controls
39 lines (29 loc) · 971 Bytes
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
const express = require('express');
const bodyParser = require('body-parser');
const cors = require('cors');
const knex = require('knex');
const player = require('./controllers/player');
const score = require('./controllers/score');
const ranking = require('./controllers/ranking');
const contraband = require('./controllers/contraband');
const db = knex({
client: 'pg',
connection: {
connectionString: process.env.DATABASE_URL,
ssl: true
}
});
const app = express();
app.use(bodyParser.json());
app.use(cors());
app.get('/', (req, res) => {
return res.send('Working just fine');
});
app.get('/ranking', ranking.getPlayerRanking(db));
app.get('/contraband', contraband.getContrabands(db));
app.post('/score', score.calculateScore(db));
app.post('/player', player.addPlayer(db));
app.delete('/player', player.deletePlayer(db));
app.listen(process.env.PORT || 3001, () => {
console.log(`I can hear you at port ${process.env.PORT}`);
});