Posts engine (SQLite + auto-publisher via poller), public feed with clickable tags, reader, admin panel, submit/search/queue tools. BFF proxy to pipeline API. Clean dark design. Docker-ready.
7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
export async function register() {
|
|
if (process.env.NEXT_RUNTIME === "nodejs") {
|
|
const { startPoller } = await import("./lib/poller")
|
|
startPoller()
|
|
}
|
|
}
|