Lasa is a stateless proxy that generates a RSS or an Atom feed from a Standard.site publication. lasa.anhgelus.world
rss atom atprotocol standard-site atproto
2
fork

Configure Feed

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

build(docker): specifies opencontainers labels

+7 -1
+6
Dockerfile
··· 15 15 # expose default port 16 16 EXPOSE 8000 17 17 18 + LABEL org.opencontainers.image.title='Lasa' 19 + LABEL org.opencontainers.image.description='Stateless proxy that generates a RSS or an Atom feed from a Standard.site publication' 20 + LABEL org.opencontainers.image.source='https://tangled.org/anhgelus.world/lasa' 21 + LABEL org.opencontainers.image.url='https://tangled.org/anhgelus.world/lasa' 22 + LABEL org.opencontainers.image.licenses='AGPL-3-only' 23 + 18 24 COPY --from=builder /app/build/lasad . 19 25 COPY --from=builder /app/build/lasa . 20 26
+1 -1
justfile
··· 8 8 repo := 'tangled.org/anhgelus.world/lasa' 9 9 10 10 # set version 11 - ldflags_version := '-X ' + repo / 'cmd/internal.Version=' + shell('git describe --tags --long --always || echo "dev-local"') 11 + ldflags_version := '-X ' + repo / 'cmd/internal.Version=' + shell('git describe --tags --always || echo "dev-local"') 12 12 ldflags := ldflags_version 13 13 14 14 dev: