-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackend.fly.toml
More file actions
52 lines (41 loc) · 1.06 KB
/
backend.fly.toml
File metadata and controls
52 lines (41 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
app = "listable-prod"
primary_region = "ewr"
kill_signal = "SIGINT"
kill_timeout = 5
processes = []
[build]
image="list-backend"
[env]
APP_OIDC_ISSUER_URL="https://listable.us.auth0.com"
APP_OIDC_REDIRECT_URL="https://getlistable.app/callback"
APP_SESSION_DOMAIN="getlistable.app"
APP_ALLOWED_ORIGINS="https://getlistable.app,https://o4505183212077056.ingest.sentry.io,https://localhost"
APP_OIDC_LOGOUT_REDIRECT_URL="https://getlistable.app/"
APP_ENV="production"
APP_OLLAMA_HOST="listable-prod-llm.fly.dev"
[experimental]
allowed_public_ports = []
auto_rollback = true
DEBUG = true
[[vm]]
size = "shared-cpu-1x"
memory = "512mb"
[http_service]
internal_port = 5000
force_https = true
# auto scale
# auto_stop_machines = true
# auto_start_machines = true
# min_machines_running = 1
[[http_service.checks]]
grace_period = "20s"
interval = "5s"
method = "GET"
timeout = "1s"
path = "/health_check"
[[services]]
internal_port = 5001
protocol = "tcp"
[[services.ports]]
handlers = ["tls", "http"]
port = 448