Select the types of activity you want to include in your feed.
Stateless auth proxy that converts AT Protocol native apps from public to confidential OAuth clients. Deploy once, get 180-day refresh tokens instead of 24-hour ones.
···11+# Binary
22+atproto-auth-proxy
33+44+# Test binary
55+*.test
66+77+# Coverage
88+coverage.out
99+1010+# IDE
1111+.idea/
1212+.vscode/
1313+*.swp
1414+*.swo
1515+*~
1616+1717+# OS
1818+.DS_Store
1919+Thumbs.db
2020+2121+# Environment / secrets
2222+.env
2323+*.pem
+11
Dockerfile
···11+FROM golang:1.26 AS builder
22+WORKDIR /src
33+COPY go.mod go.sum ./
44+RUN go mod download
55+COPY . .
66+RUN CGO_ENABLED=0 GOOS=linux go build -o /out/atproto-auth-proxy .
77+88+FROM gcr.io/distroless/base-debian12
99+COPY --from=builder /out/atproto-auth-proxy /app/atproto-auth-proxy
1010+EXPOSE 8080
1111+ENTRYPOINT ["/app/atproto-auth-proxy"]
+21
LICENSE
···11+MIT License
22+33+Copyright (c) 2026 SparrowTek
44+55+Permission is hereby granted, free of charge, to any person obtaining a copy
66+of this software and associated documentation files (the "Software"), to deal
77+in the Software without restriction, including without limitation the rights
88+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99+copies of the Software, and to permit persons to whom the Software is
1010+furnished to do so, subject to the following conditions:
1111+1212+The above copyright notice and this permission notice shall be included in all
1313+copies or substantial portions of the Software.
1414+1515+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1717+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121+SOFTWARE.