chore(infra): add Railway, Docker, and CI/CD configuration

- 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>
This commit is contained in:
Alexa Louise
2025-11-29 19:36:14 -06:00
parent aee62eb8d2
commit f490db586d
3 changed files with 94 additions and 0 deletions

12
railway.toml Normal file
View File

@@ -0,0 +1,12 @@
[build]
builder = "dockerfile"
[deploy]
numReplicas = 1
startCommand = "serve -s build -l ${PORT:-3000}"
healthcheckPath = "/"
healthcheckTimeout = 30
[variables]
NODE_ENV = "production"
PORT = "3000"