An easy to set up and operate PDS admin panel.
0

Configure Feed

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

pds-operator / fly.toml
633 B 30 lines
1app = "pckt-pds-operator" 2primary_region = "sjc" 3 4[build] 5 6[env] 7 HOST = "0.0.0.0" 8 PORT = "8787" 9 PDS_HOSTNAME = "pds.pckt.cafe" 10 RELAY_HOSTNAME = "bsky.network" 11 APPVIEW_URL = "https://bsky.app" 12 DASHBOARD_URL = "https://operator.pckt.cafe" 13 DB_PATH = "/data/data.sqlite" 14 AUDIT_LOG_PATH = "/data/audit.log" 15 16[mounts] 17 source = "data" 18 destination = "/data" 19 20[http_service] 21 internal_port = 8787 22 force_https = true 23 # the syncer's streams and DM alerts need the machine always on 24 auto_stop_machines = "off" 25 auto_start_machines = true 26 min_machines_running = 1 27 28[[vm]] 29 size = "shared-cpu-1x" 30 memory = "512mb"