ccclip/fly.toml
Mariano Uvalle c041a5feee Update to go 1.24 and add some logging.
Signed-off-by: Mariano Uvalle <u.g.a.mariano@gmail.com>
2025-05-10 13:59:51 -07:00

30 lines
618 B
TOML

# fly.toml app configuration file generated for ccclip on 2025-05-10T00:45:48-07:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = 'ccclip'
primary_region = 'sea'
[build]
dockerfile = './cmd/server/Dockerfile'
[env]
CCCLIP_DATABASE_LOCATION = '/database/ccclip.db'
[[mounts]]
source = 'database'
destination = '/database'
[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = 'stop'
auto_start_machines = true
processes = ['app']
[[vm]]
size = 'shared-cpu-1x'
memory = '512mb'
cpu_kind = 'shared'
cpus = 1