-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
42 lines (36 loc) · 1.2 KB
/
app.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
const fs = require('fs');
const path = require('path');
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
const port = 3000;
// parsuje dane typu application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }));
// parser do jsona
app.use(express.json());
app.set('view engine', 'ejs');
app.set('views', 'views');
app.use(express.static('public'));
const wyborcaController = require('./controller/voterController');
app.use('/', wyborcaController.route);
const db = require('./db/mysql');
let dbSchemaScript = fs.readFileSync(path.join(__dirname, '/db/schema.sql')).toString();
console.log(`Attempt to run schema.sql...`);
console.log(dbSchemaScript);
db.query(dbSchemaScript)
.then( () => {
//test pobierania danych z bazy
//przykład sekwencjonowania wywołań asynchronicznych -
//zwrócona promesa będzie obsłużowna w następnym bloku then()
return db.execute('select * from Wybory');
})
.then(([Wyborca, metadata]) => {
console.log(Wyborca);
})
.catch(err => {
console.log(err);
})
;
app.listen(port, () => {
console.log(`App is listening at port ${port}`);
});