-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
32 lines (24 loc) · 805 Bytes
/
index.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
require('dotenv/config');
const path = require('path');
const express = require('express');
const db = require('./database');
const app = express();
const distPath = path.join(__dirname, 'dist/');
const staticMiddleware = express.static(distPath);
app.use(staticMiddleware);
app.use(express.json());
// Feel free to delete these tests once you've gotten things working
app.get('/api/test', (req, res) => {
res.status(200).json({ success: 'Server test successful' });
});
app.get('/api/db/test', (req, res) => {
db.query('select * from "actors"')
.then(result => {
return res.json(result.rows[0]);
})
.catch(err => console.error(err));
});
app.listen(process.env.PORT, () => {
// eslint-disable-next-line no-console
console.log('Listening on port', process.env.PORT);
});