GET /xrpc/app.bsky.actor.searchActorsTypeahead typeahead.waow.tech
16
fork

Configure Feed

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

at main 34 lines 712 B view raw
1# fly.toml app configuration file generated for typeahead-ingester on 2026-03-16T22:03:25-05:00 2# 3# See https://fly.io/docs/reference/configuration/ for information about how to use this file. 4# 5 6app = 'typeahead-ingester' 7primary_region = 'ewr' 8 9[build] 10 dockerfile = 'Dockerfile' 11 12[mounts] 13 source = 'typeahead_data' 14 destination = '/data' 15 16[env] 17 TYPEAHEAD_URL = 'https://typeahead.nate-8fe.workers.dev' 18 SQLITE_TMPDIR = '/data/tmp' 19 20[processes] 21 app = './typeahead-ingester' 22 23[http_service] 24 internal_port = 8080 25 force_https = true 26 auto_stop_machines = 'off' 27 auto_start_machines = true 28 min_machines_running = 1 29 processes = ['app'] 30 31[[vm]] 32 memory = '256mb' 33 cpu_kind = 'shared' 34 cpus = 1