-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
38 lines (29 loc) · 1002 Bytes
/
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
//Imports von Node Modulen
const express = require("express");
const bodyParser = require("body-parser");
const path = require("path");
//Imports von ausgelagerten Funktionen
//const adminRoutes = require("./routes/admin.js");
//const shopRoutes = require("./routes/shop.js");
const errorController = require("./controllers/error");
const pbsRoutes = require("./routes/pbs");
//Express starten
const app = express();
//EJS als Engine einrichten
app.set("view engine", "ejs");
//Body-Parser für req.body (Funktioniert nicht wie gewünscht)
app.use(bodyParser.urlencoded({ extended: false }));
//Lesezugriff auf das Filesystem
app.use(express.static(path.join(__dirname, "public")));
//Funktionen benutzen
//app.use(adminRoutes.routes);
//app.use(shopRoutes);
app.use(pbsRoutes);
/*app.get("/", (req, res, next)=>{
console.log("test");
res.status(500);
});*/
//Page not found
app.use("/", errorController.PNF404);
//Port öffnen
app.listen(3000); //Erstellt den Server und öffnet den Port