mirror of
https://github.com/coollabsio/coolify-docs.git
synced 2026-06-19 07:35:55 +00:00
a64450ae9d
Replace VitePress/Vue stack with Fumadocs MDX, TanStack Start, React 19, and Vite. Migrate all documentation content to MDX under content/docs/. Add full src/ app with React components, routing, search, and API page. Remove Korrektly integration from CI/CD workflows, Dockerfile, and env vars. Update build pipeline to output to .output/public instead of docs/.vitepress/dist.
17 lines
635 B
Plaintext
17 lines
635 B
Plaintext
---
|
|
title: Ruby on Rails
|
|
description: Deploy Ruby on Rails applications on Coolify with database migrations, MVC pattern support, and automated deployment workflows.
|
|
---
|
|
|
|
# Ruby on Rails
|
|
|
|
Ruby on Rails is a web-application framework that includes everything needed to create database-backend web applications according to the Model-View-Controller (MVC) pattern.
|
|
|
|
## Requirements
|
|
|
|
If you would like to migrate the database during the deployment with `NIXPACKS` build pack, you need to set the following `Start Command`:
|
|
|
|
```bash
|
|
bundle exec rake db:migrate && bundle exec bin/rails server -b 0.0.0.0 -p ${PORT:-3000} -e $RAILS_ENV
|
|
```
|