Cleaned the server-node dir

Split express into different ports for easier migration
Typed page ops that had warnings
This commit is contained in:
Felix Kaspar
2023-11-08 02:24:16 +01:00
parent 0f35c77074
commit 97e4eab7bb
32 changed files with 119 additions and 494 deletions

View File

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