Tap is a proof-of-concept editor for screenplays formatted in Fountain markup. It stores all data in AT Protocol records.
at main 524 B view raw
1# Fly.io configuration for tap (staging) 2# Deploy with: flyctl deploy -c fly.staging.toml 3 4app = "spout-diggetal-staging" 5primary_region = "iad" 6 7[build] 8 dockerfile = "Dockerfile" 9 10[env] 11 PORT = "8088" 12 CLIENT_URI = "https://staging.tapapp.lol" 13 14[http_service] 15 internal_port = 8088 16 force_https = true 17 auto_start_machines = true 18 auto_stop_machines = "stop" 19 min_machines_running = 0 20 processes = ["app"] 21 22 [[http_service.checks]] 23 interval = "15s" 24 timeout = "2s" 25 method = "GET" 26 path = "/health"