fork
Configure Feed
Select the types of activity you want to include in your feed.
Atproto-backed clone of meetinghouse.cc.
atlas.whiteley.io
atproto
fork
Configure Feed
Select the types of activity you want to include in your feed.
1FROM golang:1.25-alpine
2
3RUN apk add --no-cache gcc musl-dev nodejs npm
4RUN npm install -g bun
5
6WORKDIR /app
7COPY . .
8
9RUN bun install
10RUN bunx tailwindcss -i ./assets/input.css -o ./static/css/output.css --minify
11RUN go tool templ generate
12RUN go build -o main .
13
14EXPOSE 8080
15CMD ["./main"]