microservices/deployment-service/snakeapi_service/fly.toml

18 lines
242 B
TOML
Raw Normal View History

2025-04-30 11:55:29 -07:00
app = "snakeapi-template"
2025-04-29 11:40:06 -07:00
kill_signal = "SIGINT"
kill_timeout = 5
[build]
2025-04-30 11:55:29 -07:00
dockerfile = "dockerfile"
2025-04-29 11:40:06 -07:00
[env]
2025-04-30 11:55:29 -07:00
PORT = "3006"
2025-04-29 11:40:06 -07:00
[[services]]
2025-04-30 11:55:29 -07:00
internal_port = 3006
protocol = "tcp"
2025-04-29 11:40:06 -07:00
2025-04-30 11:55:29 -07:00
[[services.ports]]
handlers = ["http"]
port = 80