Adios Docs

Deploying Ruby

Deploying Ruby applications like Sinatra or Rails is easy with Adios. We support all major Ruby versions.

Configuration

Create an adios.yaml file in the root of your project:

name: my-ruby-app
runtime: ruby:3.2
build_cmd:
- bundle install
start_cmd:
- bundle exec ruby app.rb
env:
  PORT: $PORT
  RACK_ENV: production

Deploy

$ adios up