Page MenuHomeSealhub

index.ts
No OneTemporary

index.ts

import kill from "kill-port";
import _locreq from "locreq";
import TheApp from "./app.js";
import { SEALIOUS_SANITY } from "./config.js";
import { mainRouter } from "./routes/index.js";
import { module_dirname } from "./util.js";
const locreq = _locreq(module_dirname(import.meta.url));
const app = new TheApp();
console.log({ SEALIOUS_SANITY });
kill(app.config["www-server"].port)
.then(() => app.start())
.then(async () => {
if (SEALIOUS_SANITY) {
console.error("Exiting with error code 0");
process.exit(0);
}
mainRouter(app.HTTPServer.router);
})
.catch((error) => {
console.error(error);
if (SEALIOUS_SANITY) {
console.error("EXITING WITH STATUS 1");
process.exit(1);
}
});
app.HTTPServer.addStaticRoute("/", locreq.resolve("public"));

File Metadata

Mime Type
text/x-java
Expires
Tue, Dec 24, 14:03 (17 h, 53 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
557256
Default Alt Text
index.ts (775 B)

Event Timeline