zdravko/deploy/fly.toml

53 lines
1.3 KiB
TOML
Raw Normal View History

2024-02-17 20:31:09 +00:00
# fly.toml app configuration file generated for zdravko on 2024-02-17T21:20:17+01:00
#
2024-02-11 09:15:00 +00:00
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
2024-02-17 20:31:09 +00:00
#
2024-02-11 09:15:00 +00:00
app = 'zdravko'
primary_region = 'waw'
[build]
2024-02-17 20:31:09 +00:00
image = 'ghcr.io/mentos1386/zdravko:main'
2024-02-11 09:15:00 +00:00
[env]
2024-02-16 12:52:27 +00:00
OAUTH2_ENDPOINT_AUTH_URL = 'https://github.com/login/oauth/authorize'
2024-02-17 20:31:09 +00:00
OAUTH2_ENDPOINT_TOKEN_URL = 'https://github.com/login/oauth/access_token'
2024-02-16 12:52:27 +00:00
OAUTH2_ENDPOINT_USER_INFO_URL = 'https://api.github.com/user'
2024-02-17 20:31:09 +00:00
ROOT_URL = 'https://zdravko.mnts.dev'
2024-02-16 21:31:00 +00:00
TEMPORAL_SERVER_HOST = 'server.process.zdravko.internal:7233'
2024-02-11 09:15:00 +00:00
[processes]
2024-02-17 20:31:09 +00:00
server = '--temporal=true --server=true --worker=false'
worker = '--temporal=false --server=false --worker=true'
2024-02-11 09:15:00 +00:00
2024-02-16 14:59:00 +00:00
[[mounts]]
2024-02-17 20:31:09 +00:00
source = 'data'
destination = '/data'
processes = ['server']
2024-02-16 14:59:00 +00:00
2024-02-11 09:15:00 +00:00
[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = true
auto_start_machines = true
2024-02-17 20:31:09 +00:00
min_machines_running = 0
processes = ['server']
[[services]]
protocol = 'tcp'
internal_port = 7233
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
processes = ['server']
[[services.ports]]
port = 7233
handlers = ['tls']
2024-02-11 09:15:00 +00:00
[[vm]]
cpu_kind = 'shared'
cpus = 1
memory_mb = 256
2024-02-17 20:31:09 +00:00
processes = ['server', 'worker']