We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8babc4b commit bd794d7Copy full SHA for bd794d7
1 file changed
railway.toml
@@ -7,8 +7,11 @@ dockerfilePath = "Dockerfile.production"
7
# Use puma.rb configuration for binding (it already handles PORT env var)
8
startCommand = "bundle exec puma -C config/puma.rb"
9
10
-# Health check configuration
11
-healthcheckPath = "/up"
12
-healthcheckTimeout = 300
+# Restart policy
13
restartPolicyType = "on_failure"
14
restartPolicyMaxRetries = 3
+
+# Healthcheck disabled - Railway will consider the service healthy if it's running
15
+# You can enable it later once the app is fully configured
16
+# healthcheckPath = "/up"
17
+# healthcheckTimeout = 300
0 commit comments