ccclip/fly.toml

31 lines
618 B
TOML
Raw Normal View History

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