zdravko/deploy/fly.toml

40 lines
1 KiB
TOML
Raw Normal View History

2024-02-11 09:15:00 +00:00
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
app = 'zdravko'
primary_region = 'waw'
[build]
2024-02-16 21:31:00 +00:00
dockerfile = "Dockerfile"
2024-02-17 19:19:18 +00:00
context = "deploy"
2024-02-11 09:15:00 +00:00
[env]
2024-02-16 13:53:27 +00:00
ROOT_URL = 'https://zdravko.mnts.dev'
2024-02-16 14:59:00 +00:00
2024-02-16 12:52:27 +00:00
OAUTH2_ENDPOINT_TOKEN_URL = 'https://github.com/login/oauth/access_token'
OAUTH2_ENDPOINT_AUTH_URL = 'https://github.com/login/oauth/authorize'
OAUTH2_ENDPOINT_USER_INFO_URL = 'https://api.github.com/user'
2024-02-11 09:15:00 +00:00
2024-02-16 21:31:00 +00:00
TEMPORAL_UI_HOST = 'server.process.zdravko.internal:8223'
TEMPORAL_SERVER_HOST = 'server.process.zdravko.internal:7233'
2024-02-11 09:15:00 +00:00
[processes]
2024-02-17 19:19:18 +00:00
server = "/zdravko --temporal=true --server=true --worker=false"
worker = "/zdravko --temporal=false --server=false --worker=true"
2024-02-11 09:15:00 +00:00
2024-02-16 14:59:00 +00:00
[[mounts]]
source = "zdravko_data"
2024-02-16 21:31:00 +00:00
destination = "/var/lib/litefs"
processes = ["server"]
2024-02-16 14:59:00 +00:00
2024-02-11 09:15:00 +00:00
[http_service]
processes = ["server"]
internal_port = 8080
force_https = true
auto_stop_machines = true
auto_start_machines = true
[[vm]]
cpu_kind = 'shared'
cpus = 1
memory_mb = 256