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 # APP_URL will be set dynamically by the workflow
15
16[http_service]
17 internal_port = 8080
18 force_https = true
19 auto_stop_machines = true
20 auto_start_machines = true
21 min_machines_running = 1
22
23 [http_service.concurrency]
24 type = "requests"
25 hard_limit = 250
26 soft_limit = 200
27
28[[mounts]]
29 source = "status_data"
30 destination = "/data"
31
32[[vm]]
33 cpu_kind = "shared"
34 cpus = 1
35 memory_mb = 256