[READ ONLY MIRROR] Spark Social AppView Server github.com/sprksocial/server
atproto deno hono lexicon
5
fork

Configure Feed

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

feed-gen docker

+24
+5
services/feed-gen/.dockerignore
··· 1 + node_modules/ 2 + .idea/ 3 + .env 4 + .git 5 + dist
+2
services/feed-gen/.gitignore
··· 1 1 # deps 2 2 node_modules/ 3 + dist 4 + .env
+17
services/feed-gen/Dockerfile
··· 1 + FROM oven/bun:1-alpine AS builder 2 + WORKDIR /app 3 + COPY package.json bun.lock ./ 4 + RUN bun install --frozen-lockfile 5 + COPY . . 6 + RUN bun run build 7 + 8 + FROM oven/bun:1-alpine 9 + WORKDIR /app 10 + COPY --from=builder /app/dist ./dist 11 + COPY --from=builder /app/package.json ./ 12 + COPY --from=builder /app/bun.lock ./ 13 + RUN bun install --production --frozen-lockfile 14 + 15 + ENV NODE_ENV=production 16 + EXPOSE 3000 17 + CMD ["bun", "run", "start"]