···11# Lasa
2233-Lasa is stateless proxy that generates a RSS or an Atom feed from a [Standard.site](https://standard.site) publication.
33+Lasa is a stateless proxy that generates a RSS or an Atom feed from a [Standard.site](https://standard.site)
44+publication.
4556## Usage
6788+To list publications from an account:
99+```
1010+https://lasa.example.org/{DID or Handle}
1111+```
1212+713To get the RSS feed from a publication:
814```
915https://lasa.example.org/{DID or Handle}/{Record Key}/rss
···1420https://lasa.example.org/{DID or Handle}/{Record Key}/atom
1521```
16221717-To list publications from an account:
2323+Examples:
1824```
1919-https://lasa.example.org/{DID or Handle}
2525+https://lasa.example.org/did:plc:revjuqmkvrw6fnkxppqtszpv
2626+https://lasa.example.org/did:plc:revjuqmkvrw6fnkxppqtszpv/3lwafzkjqm25s/rss
2727+https://lasa.example.org/did:plc:revjuqmkvrw6fnkxppqtszpv/3lwafzkjqm25s/atom
2028```
21292230## Deploy
+4
justfile
···11builder := 'go build -ldflags "-s -w"'
22+testConfig := '"test.toml"'
2334build: build-lasa build-lasad
45···89build-lasad:
910 {{builder}} -o build/lasad ./cmd/lasad/
10111212+test:
1313+ if [[ ! -f {{testConfig}} ]]; then go run ./cmd/lasad/ gen-config -c {{testConfig}}; fi
1414+ go run ./cmd/lasad/ -c {{testConfig}}