Flake to setup a local env for atproto development
8
fork

Configure Feed

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

Add pre to the top

+13 -13
+13 -13
README.md
··· 2 2 3 3 A Nix-based development environment for running AT Protocol services (PDS, PLC, Caddy proxy, and MailHog). 4 4 5 + ## Prerequisites 6 + 7 + Make sure to add these lines to your `/etc/hosts` file: 8 + ``` 9 + 127.0.0.1 pds.example.org 10 + 127.0.0.1 plc.example.org 11 + ``` 12 + 13 + Generate SSL certificates before first use: 14 + ```bash 15 + nix run .#generate-certs 16 + ``` 17 + 5 18 ## Quick Start 6 19 7 20 1. **Enter the development environment:** ··· 63 76 - `tmux attach -t atproto` - Attach to the services session 64 77 - `tmux kill-session -t atproto` - Stop all services 65 78 - `nix run .#generate-certs` - Generate SSL certificates 66 - 67 - ## Prerequisites 68 - 69 - Make sure to add these lines to your `/etc/hosts` file: 70 - ``` 71 - 127.0.0.1 pds.example.org 72 - 127.0.0.1 plc.example.org 73 - ``` 74 - 75 - Generate SSL certificates before first use: 76 - ```bash 77 - nix run .#generate-certs 78 - ```