alpha
Login
or
Join now
microcosm.blue
/
microcosm-rs
Star
0
Fork
3
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
Star
0
Fork
3
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
run constellation under systemd
author
phil
date
1 year ago
(Mar 26, 2025, 6:17 PM -0400)
commit
3c6ab688
3c6ab6889826c87c23ce7f45fe99f3d8e46acc73
parent
7653d695
7653d695a0e7bb4bd592b7576d05eb6215354647
+19
1 changed file
Expand all
Collapse all
Unified
Split
cozy-setup (move to another repo).md
+19
cozy-setup (move to another repo).md
Reviewed
···
334
334
- stop upstreaming requests to older instance in nginx
335
335
336
336
337
337
+
- systemd unit for running: `sudo nano /etc/systemd/system/constellation.service`
338
338
+
339
339
+
```toml
340
340
+
[Unit]
341
341
+
Description=Constellation backlinks index
342
342
+
After=network.target
343
343
+
344
344
+
[Service]
345
345
+
User=pi
346
346
+
WorkingDirectory=/home/pi/links/constellation
347
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
348
+
LimitNOFILE=16384
349
349
+
Restart=always
350
350
+
351
351
+
[Install]
352
352
+
WantedBy=multi-user.target
353
353
+
```
354
354
+
355
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