-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
81 lines (68 loc) · 2.32 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
//index.js file
require("dotenv").config();
const express = require("express");
const expressLayouts = require("express-ejs-layouts");
const bodyParser = require("body-parser");
const mysql = require("mysql");
const app = express();
const port = process.env.PORT || 8089;
const viewsDir = process.env.VIEWSDIR || "../topic7/mid-term/views/"; // for routing use
/** Database Coonection */
const db = mysql.createPool({
connectionLimit : 10,
host: process.env.DBHOST || "localhost",
user: process.env.DBUSER || "root",
password: process.env.DBPASSWORD || "root",
database: process.env.DBNAME || "calorieBuddy"
});
//connect to database, will be connected and released during queries
// db.connect((err) => {
// if(err) {
// throw err;
// }
// console.log("Connected to database");
// });
global.db = db;
/** POST Req.Body Parser */
app.use(bodyParser.urlencoded({ extended: true }));
/** Static Files */
app.use('/assets', express.static(__dirname + '/views/assets')); // serves assets public
/** Set Templating Engine */
app.use(expressLayouts)
app.set("layout", __dirname + "/views/_Layout.html")
app.set("view engine", "ejs");
app.engine("html", require("ejs").renderFile);
/** Routes */
require("./routes/main")(app, viewsDir);
app.listen(port, () => {
console.log("Welcome to the mid-term application!");
//console.log("This application must run on PORT 8089");
console.log(`CalorieBuddy listening on port ${port}!`)
});
// var http = require("http");
// http
// .createServer(function(req, res) {
// res.writeHead(200, { "Content-Type": "text/plain" });
// res.write("Welcome to the mid-term application! \n\n");
// res.write("This application must run on PORT 8089");
// res.end();
// })
// .listen(8089, function() {
// console.log("Node server is running...");
// });
/** MySQL Database setup, steps
*
* CREATE TABLE `calorieBuddy`.`foods` (
`id` INT NOT NULL AUTO_INCREMENT,
`name` VARCHAR(100) NOT NULL,
`typicalValue` DECIMAL(5,2) UNSIGNED NOT NULL,
`unit` VARCHAR(50) NOT NULL,
`calories` DECIMAL(5,2) UNSIGNED NOT NULL,
`carbs` DECIMAL(5,2) UNSIGNED NOT NULL,
`fat` DECIMAL(5,2) UNSIGNED NOT NULL,
`protein` DECIMAL(5,2) UNSIGNED NOT NULL,
`salt` DECIMAL(5,2) UNSIGNED NOT NULL,
`sugar` DECIMAL(5,2) UNSIGNED NOT NULL,
PRIMARY KEY (`id`))
*
*/