this repo has no description
coral.waow.tech
1app = 'coral'
2primary_region = 'ord'
3
4[build]
5
6[env]
7 PORT = "3000"
8 WS_PORT = "3001"
9
10# main HTTP service (health, stats, state)
11[http_service]
12 internal_port = 3000
13 force_https = true
14 auto_stop_machines = 'off'
15 auto_start_machines = true
16 min_machines_running = 1
17 processes = ['app']
18
19# websocket service for real-time updates
20# accessible via wss://coral.fly.dev:3001 after allocating IP
21[[services]]
22 internal_port = 3001
23 protocol = "tcp"
24
25 [services.concurrency]
26 type = "connections"
27 hard_limit = 1000
28 soft_limit = 500
29
30 [[services.ports]]
31 port = 3001
32 handlers = ["tls"]
33
34[mounts]
35 source = "coral_data"
36 destination = "/data"
37
38[[vm]]
39 memory = '512mb'
40 cpu_kind = 'shared'
41 cpus = 2