The recipes.blue monorepo recipes.blue
recipes appview atproto
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: i undid too far, whoopsies

-4
-4
apps/api/src/index.ts
··· 1 1 import { serve } from "@hono/node-server"; 2 2 import { Hono } from "hono"; 3 3 import { rootLogger } from "./logger.js"; 4 - import { newIngester } from "./ingest.js"; 5 4 import env from "./config/env.js"; 6 5 import { xrpcApp } from "./xrpc/index.js"; 7 6 import { cors } from "hono/cors"; ··· 11 10 import { CookwareSession } from "./util/api.js"; 12 11 import { serveStatic } from "@hono/node-server/serve-static"; 13 12 import * as Sentry from "@sentry/node" 14 - import { readFileSync } from "fs"; 15 - import path from "path"; 16 13 17 14 if (env.SENTRY_DSN) { 18 15 Sentry.init({ ··· 91 88 92 89 app.use('/*', serveStatic({ root: env.PUBLIC_DIR, rewriteRequestPath: () => 'index.html' })); 93 90 94 - newIngester().start(); 95 91 serve({ 96 92 fetch: app.fetch, 97 93 hostname: env.HOST,