Skip to main content

Templates

One-click deploy popular stacks with pre-configured services, databases, queues, and environment variables.

Available Templates

TemplateDescription
Next.js + PostgreSQLFull-stack React with managed database
Django + PostgreSQL + RedisWeb + worker services with Celery
Node API + PostgreSQLNode.js REST API with database
Worker + RabbitMQ QueueBackground worker with managed queue
FastAPI + PostgreSQLPython async API with database
Go API + PostgreSQLGo HTTP service with database
Ruby on RailsRails with PostgreSQL and Redis
Nuxt 3 + PostgreSQLVue SSR with database
Flask + RedisPython API with caching
React SPAVite-built single-page app on nginx
Static SiteHTML/CSS/JS served by nginx
MCP ServerNode.js MCP server starter
Webhook ReceiverMinimal webhook ingestion service
API
# List all templates
curl https://railpush.com/api/v1/templates \
-H "Authorization: Bearer <token>"

# Deploy a template
curl -X POST https://railpush.com/api/v1/templates/nextjs-postgres/deploy \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{"workspace_id": "<ws-id>", "name_prefix": "my-app"}'