cleanup and rollup

This commit is contained in:
2025-08-11 14:59:06 -05:00
parent 2617231d9e
commit af40a8e7dd
13 changed files with 0 additions and 77 deletions

View File

@@ -1,15 +0,0 @@
var StaticServer = require('./static-server');
var expressWs = require('express-ws');
var app = require('express')();
expressWs(app);
var staticServer = new StaticServer();
app.use('/', staticServer);
var port = process.env.PORT || 8080
app.listen(port, function () {
console.log('Open MCT hosted at http://localhost:' + port);
});

View File

@@ -1,11 +0,0 @@
var express = require('express');
function StaticServer() {
var router = express.Router();
router.use('/', express.static(__dirname + '/..'));
return router
}
module.exports = StaticServer;