A fullstack app for indexing standard.site documents
8
fork

Configure Feed

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

at main 13 lines 215 B view raw
1FROM oven/bun:latest 2 3WORKDIR /app 4 5COPY package.json bun.lockb* ./ 6RUN bun install --frozen-lockfile || bun install 7 8COPY src ./src 9COPY tsconfig.json ./ 10 11RUN mkdir -p /app/data 12 13CMD ["bun", "run", "src/index.ts"]