Die Dokumentation steht nur in Englisch zur Verfügung.

Running Ruby applications on Nodion

Learn more about how to run Ruby applications like Sinatra or Ruby on Rails on Nodion

Create a new application

To get started you can simply create a new application after signing in. If you simply want to try out our platform you can use one of our starter templates to get up and running quickly.

Create App Screenshot

Deploying with Buildpacks

Buildpacks will automatically detect that you are running a Ruby application if you have a Gemfile in the root directory of your application. Please provide the desired Ruby version in your Gemfile, the Ruby Buildpack will install all dependencies as well as the specified Ruby version.

It's necessary to set a PORT Environment Variable within your application settings. If this is not set, our load balancing system is not able to redirect to your application and an error will occur.

Release stage

If you need to run certain tasks when deploying you can use the release stage of the Procfile. The command provided there will be run right before spawning the new containers of that deployment.

  web: bundle exec rails s
  release: bundle exec rails db:migrateProcfile

Running Sidekiq

Sidekiq is well known and a popular library to handle background processing tasks. With Nodion you can simply provide a sidekiq start command with the worker type to run Sidekiq. For example:

  web: bundle exec rails s
  worker: bundle exec sidekiq
  release: bundle exec rails db:migrateProcfile

Sidekiq requires Redis to work. You can use our Managed Redis service to launch Redis instances.

Additional Packages

We support multiple Buildpack Builders, depending on which Builder you chose there are different packages pre-installed. You can use additional Buildpacks, like the FFmpeg Buildpack to install a specific package. In general, all Builders that are supported by Nodion are based on Ubuntu. That means you can also install any package by adding a Buildpack called apt and creating an Aptfile to provide a list of packages.

Connecting to a Database

You can create PostgreSQL or MariaDB instances with our Managed Database service and attach them directly to your application. Database credentials can be added through Environment Variables.