Tap is a proof-of-concept editor for screenplays formatted in Fountain markup. It stores all data in AT Protocol records.
1# Fly.io configuration for tap (Go + Web Components)
2# Docs: https://fly.io/docs/reference/configuration/
3
4app = "spout-diggetal"
5primary_region = "iad"
6
7[build]
8 dockerfile = "Dockerfile"
9
10[env]
11 PORT = "8088"
12 CLIENT_URI = "https://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"