Auto-indexing service and GraphQL API for AT Protocol Records
0
fork

Configure Feed

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

add back fly.toml for example, works with new client package

+36
+36
example/fly.toml
··· 1 + # fly.toml app configuration file generated for quickslice on 2025-10-29T21:49:03-07:00 2 + # 3 + # See https://fly.io/docs/reference/configuration/ for information about how to use this file. 4 + # 5 + 6 + app = 'quickslice' 7 + primary_region = 'sjc' 8 + 9 + [build] 10 + image = 'ghcr.io/bigmoves/quickslice:sha-370076b' 11 + 12 + [env] 13 + HOST = '0.0.0.0' 14 + PORT = '8080' 15 + DATABASE_URL = '/data/quickslice.db' 16 + AIP_BASE_URL = 'https://auth.slices.network' 17 + EXTERNAL_BASE_URL = 'https://quickslice.fly.dev' 18 + ENABLE_OAUTH_AUTO_REGISTER = 'true' 19 + ADMIN_DIDS = 'did:plc:bcgltzqazw5tb6k2g3ttenbj' 20 + 21 + [http_service] 22 + internal_port = 8080 23 + force_https = true 24 + auto_stop_machines = 'stop' 25 + auto_start_machines = true 26 + min_machines_running = 1 27 + processes = ['app'] 28 + 29 + [[mounts]] 30 + source = 'app_data' 31 + destination = '/data' 32 + 33 + [[vm]] 34 + memory = '1gb' 35 + cpu_kind = 'shared' 36 + cpus = 1