mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2024-12-21 19:08:24 +01:00
31 lines
709 B
JavaScript
31 lines
709 B
JavaScript
|
|
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';
|
|
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}`);
|
|
}); |