Deployment Guide

Deployment Overview

Rails Blueprint supports multiple deployment strategies for different infrastructure needs.

Mina Deployment

Fast, lightweight deployments with Mina:

# Initial setup$ mina production setup# Deploy$ mina production deploy

Docker Deployment

Container-based deployment with Docker:

$ docker build -t myapp .$ docker run -p 3000:3000 myapp

Server Requirements

  • Ubuntu 20.04+ or similar Linux distribution
  • 2GB RAM minimum (4GB recommended)
  • PostgreSQL 14+
  • Redis 6+
  • Nginx for reverse proxy

Start creating your next app now