Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
0

Configure Feed

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

run constellation under systemd

+19
+19
cozy-setup (move to another repo).md
··· 334 334 - stop upstreaming requests to older instance in nginx 335 335 336 336 337 + - systemd unit for running: `sudo nano /etc/systemd/system/constellation.service` 338 + 339 + ```toml 340 + [Unit] 341 + Description=Constellation backlinks index 342 + After=network.target 343 + 344 + [Service] 345 + User=pi 346 + WorkingDirectory=/home/pi/links/constellation 347 + ExecStart=/home/pi/links/target/release/main --backend rocks --data /mnt/constellation-index/ --jetstream us-east-2 --backup /home/pi/backup/constellation-index --backup-interval 6 --max-old-backups 20 348 + LimitNOFILE=16384 349 + Restart=always 350 + 351 + [Install] 352 + WantedBy=multi-user.target 353 + ``` 354 + 355 + 337 356 - todo: overlayfs? would need to figure out builds/updates still, also i guess logs are currently written to sd? (oof) 338 357 - todo: cross-compile for raspi? 339 358