A from-scratch atproto PDS implementation in Python (mirrors https://github.com/DavidBuchanan314/millipds)

Add sysadmin docs

+15
+15
docs/SYSADMIN.md
··· 1 + # Sysadmin Tips 2 + 3 + Watch the millipds logs: 4 + 5 + ```sh 6 + sudo journalctl -u millipds.service -f 7 + ``` 8 + 9 + Directly access the sqlite db: 10 + 11 + ```sh 12 + sudo -u millipds /opt/millipds/.venv/bin/apsw /opt/millipds/data/millipds.sqlite3 13 + ``` 14 + 15 + This is useful because APSW likely ships a more bleeding-edge sqlite3 than the one supplied by your distro - accessing it like so will guarantee compatibility. If you're going to mess with the DB, I hope you know what you're doing!