Files
2025-10-21 12:46:07 -05:00

35 lines
745 B
TOML

# fly.toml app configuration file
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
# The app name and region will be set when you run: fly launch --copy-config
# app = 'your-app-name-here' # Set during fly launch
# primary_region = 'iad' # Set during fly launch (closest region to you)
[build]
dockerfile = 'Dockerfile'
[deploy]
strategy = 'immediate'
[env]
DATA_DIR = '/app/data'
EMBED_COLOR = '5814783'
UPDATE_INTERVAL = '60'
[[mounts]]
source = 'bot_data'
destination = '/app/data'
[http_service]
internal_port = 3000
auto_stop_machines = 'off'
auto_start_machines = false
min_machines_running = 1
[[vm]]
cpu_kind = 'shared'
cpus = 1
memory_mb = 256