better serve

This commit is contained in:
Felix Kaspar 2023-11-07 01:45:16 +01:00
parent 47e0092378
commit 608b1cbe4d

View File

@ -1,20 +1,17 @@
import api from './server-node/routes/api/index.js';
import express from 'express'; import express from 'express';
const app = express(); const app = express();
const PORT = 8080; const PORT = 8080;
// Static Middleware // server-node: backend api
import api from './server-node/routes/api/index.js';
app.use("/api/", api);
// client-vanilla: frontend
app.use(express.static('./client-vanilla')); app.use(express.static('./client-vanilla'));
app.use(express.static('./shared-operations')); app.use(express.static('./shared-operations'));
app.get('/', function (req, res, next) { // TODO: Use EJS? // serve
res.render('home.ejs');
});
app.use("/api/", api);
app.listen(PORT, function (err) { app.listen(PORT, function (err) {
if (err) console.log(err); if (err) console.log(err);
console.log(`http://localhost:${PORT}`); console.log(`http://localhost:${PORT}`);