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
try not to forget this next time
author
phil
date
4 months ago
(Feb 2, 2026, 5:41 PM -0500)
commit
76d99c3c
76d99c3cf3aa4fa4c25d7022eb90b419372e2d02
parent
0f55a937
0f55a93772ba45dbd1323e4f5d2479f356963763
+26
1 changed file
Expand all
Collapse all
Unified
Split
slingshot
readme.md
+26
slingshot/readme.md
Reviewed
···
13
13
```bash
14
14
ulimit -n 4096
15
15
```
16
16
+
17
17
+
## prod deploy
18
18
+
19
19
+
you **must** setcap the binary to run it on apollo!!!!
20
20
+
21
21
+
```bash
22
22
+
sudo setcap CAP_NET_BIND_SERVICE=+eip ../target/release/slingshot
23
23
+
```
24
24
+
25
25
+
then run with
26
26
+
27
27
+
```bash
28
28
+
RUST_BACKTRACE=1 RUST_LOG=info,slingshot=trace /home/ubuntu/links/target/release/slingshot \
29
29
+
--jetstream wss://jetstream1.us-east.fire.hose.cam/subscribe \
30
30
+
--healthcheck https://hc-ping.com/[REDACTED] \
31
31
+
--cache-dir ./foyer \
32
32
+
--record-cache-memory-mb 2048 \
33
33
+
--record-cache-disk-gb 32 \
34
34
+
--identity-cache-memory-mb 1024 \
35
35
+
--identity-cache-disk-gb 8 \
36
36
+
--collect-metrics \
37
37
+
--acme-ipv6 \
38
38
+
--acme-domain slingshot.microcosm.blue \
39
39
+
--acme-contact phil@bad-example.com \
40
40
+
--acme-cache-path /home/ubuntu/certs
41
41
+
```