mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
11 lines
393 B
JavaScript
11 lines
393 B
JavaScript
import express from "express";
|
|
import topologicalEngineRouter from "./connectors/topological-engine/neo4j_obsidian_connector_router.js";
|
|
|
|
const app = express();
|
|
app.use(express.json({ limit: "5mb" }));
|
|
app.use("/topology", topologicalEngineRouter);
|
|
|
|
const PORT = process.env.PORT || 3000;
|
|
app.listen(PORT, () => {
|
|
console.log(`Topological Engine listening on http://localhost:${PORT}`);
|
|
});
|