- Add railway.toml for Railway deployment - Add Dockerfile for containerized builds - Add GitHub Actions deploy workflow 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
203 B
TOML
13 lines
203 B
TOML
[build]
|
|
builder = "dockerfile"
|
|
|
|
[deploy]
|
|
numReplicas = 1
|
|
startCommand = "serve -s build -l ${PORT:-3000}"
|
|
healthcheckPath = "/"
|
|
healthcheckTimeout = 30
|
|
|
|
[variables]
|
|
NODE_ENV = "production"
|
|
PORT = "3000"
|