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

Configure Feed

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

at main 16 lines 225 B view raw
1FROM denoland/deno:alpine-2.5.4 2ARG COMMIT_SHA 3ENV COMMIT_SHA=$COMMIT_SHA 4 5ENV NODE_ENV=production 6 7WORKDIR /app 8 9COPY . . 10 11RUN deno task codegen --skip-fmt 12RUN deno install 13 14EXPOSE 3000 15 16CMD ["deno", "run", "-A", "main.ts"]