slack status without the slack
status.zzstoatzz.io/
quickslice
1app = "zzstoatzz-status"
2primary_region = "ewr"
3
4[build]
5 dockerfile = "Dockerfile"
6
7[env]
8 SERVER_PORT = "8080"
9 SERVER_HOST = "0.0.0.0"
10 DATABASE_URL = "sqlite:///data/status.db"
11 ENABLE_FIREHOSE = "true"
12 DEV_MODE = "true"
13 # OAUTH_REDIRECT_BASE will be set dynamically by the workflow
14
15[http_service]
16 internal_port = 8080
17 force_https = true
18 auto_stop_machines = true
19 auto_start_machines = true
20 min_machines_running = 1
21
22 [http_service.concurrency]
23 type = "requests"
24 hard_limit = 250
25 soft_limit = 200
26
27[[mounts]]
28 source = "status_data"
29 destination = "/data"
30
31[[vm]]
32 cpu_kind = "shared"
33 cpus = 1
34 memory_mb = 256