Merge branch 'stirling-pdf-rewrite' into version-2
This commit is contained in:
@@ -16,6 +16,15 @@ app.get('/', function (req, res, next) { // TODO: Use EJS?
|
||||
app.use("/api/operations", operations);
|
||||
//app.use("/api/workflow", workflow);
|
||||
|
||||
// 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('./shared-operations'));
|
||||
|
||||
// serve
|
||||
app.listen(PORT, function (err) {
|
||||
if (err) console.log(err);
|
||||
console.log(`http://localhost:${PORT}`);
|
||||
|
||||
Reference in New Issue
Block a user