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): example compose file

+18
+15
compose.yml
··· 1 + services: 2 + lasa: 3 + build: . 4 + ports: 5 + - 8000:8000 6 + volumes: 7 + - ./config.toml:/etc/lasad.toml 8 + depends_on: 9 + - valkey 10 + dns: 11 + # required, otherwise DNS server misbehaving 12 + - 8.8.8.8 13 + - 8.8.4.4 14 + valkey: 15 + image: valkey/valkey:alpine
+3
justfile
··· 8 8 if [[ ! -f {{testConfig}} ]]; then go run ./cmd/lasad/ gen-config -c {{testConfig}}; fi 9 9 go run ./cmd/lasad/ -c {{testConfig}} -v 10 10 11 + dev-docker: 12 + {{docker}} compose up -d 13 + 11 14 valkey: 12 15 {{docker}} run --rm --name {{valkey_container}} -p 6379:6379 -d docker.io/valkey/valkey:alpine 13 16