···0001.PHONY: debug
2debug:
3 uv run -- flask --app 'src.main' run --debug -h '0.0.0.0' -p 8080
···1+.env:
2+ uv run -- generate_secrets.py >> .env
3+4.PHONY: debug
5debug:
6 uv run -- flask --app 'src.main' run --debug -h '0.0.0.0' -p 8080
+18
README.md
···000000000000000000
···1+# ligo.at
2+3+A decentralized links page powered by the [AT Protocol][atproto].
4+5+## dependencies
6+7+Install [uv][uv] and run `uv sync`.
8+9+## generate secrets
10+11+Use the `generate_secrets.py` script or run `make .env`.
12+13+## run
14+15+Either start a debug server with `make debug` or a production one with `make run`. Production needs the `PORT` environment variable.
16+17+[atproto]: https://atproto.com
18+[uv]: https://docs.astral.sh/uv/