mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 15:29:36 +00:00
14 lines
416 B
TOML
14 lines
416 B
TOML
[build]
|
|
builder = "DOCKERFILE"
|
|
dockerfilePath = "Dockerfile"
|
|
|
|
[deploy]
|
|
# Intentionally NO startCommand — Dockerfile's CMD uses `sh -c` which
|
|
# correctly expands Railway's injected $PORT. Overriding here bypasses
|
|
# the shell and breaks ${PORT:-8000} → uvicorn treats it as literal.
|
|
healthcheckPath = "/healthz"
|
|
healthcheckTimeout = 300
|
|
restartPolicyType = "ON_FAILURE"
|
|
restartPolicyMaxRetries = 3
|
|
numReplicas = 1
|