Aptible PaaS logoDocs

Rails Starter Guide

This guide will walk you through the process of launching the Rails Getting Started example on Aptible. See it deployed live here.

📘 Want to skip the reading? Deploy this starter template directly from the Aptible Dashboard.

Prerequisites

Please complete the following steps before moving forward:

Clone the Repo

Clone the template-rails repo to your local machine.

Create an App

Create an App using the Dashboard or the aptible apps:create command:

# Set or substitute $APP_HANDLE with the app name of your choice

aptible apps:create "$APP_HANDLE"

Until you push code and trigger a build, Aptible uses the App as a placeholder. Once provisioned, copy the App's Git Remote from the Dashboard or when it is returned in the CLI. The Remote will be referred to as $GIT_REMOTE moving forward.

Create and set a secret key

Create and set a DEVELOPMENT_SECRET_KEY to use with Rails:

# Generate a secret key, then set it as a configuration variable in Aptible

aptible config:set --app "$APP_HANDLE" DEVELOPMENT_SECRET_KEY="$DEVELOPMENT_SECRET_KEY"

Note: we have also defined TEST_SECRET_KEY and PRODUCTION_SECRET_KEY. We're not specifying an environment in the Dockerfile, so by default we're in the development environment. If you intend specify a different environment, be sure to also set the appropriate secret key as well.

Push your code

Push the cloned repo to Aptible by adding Aptible as a git remote for your app, and then using git push to push your code:

git remote add aptible "$GIT_REMOTE"
git push aptible main

You can use the logs that will stream to your terminal to understand the cause of failure in case anything goes wrong.

Add a Default Endpoint

Now that your app is running, you need to create a default Endpoint to see it in action. Each endpoint defines an Elastic Load Balancer and one or more proxies that provide SSL termination; these expose your application to the web and keep your traffic secure, respectively.

In the Dashboard, select your app and navigate to the Endpoints tab. Create your first endpoint with all of the default settings, and click Save Endpoint. This configuration will use the Default Domain of *.on-aptible.com to route traffic to your application. Later on, you can create your own endpoint with a Custom Domain. It is also possible to create the endpoint using the CLI command aptible endpoints:https:create.

After the endpoint is provisioned, the configured hostname will be available to accept traffic.

Optional Next steps:

Provision a Database

Add a PostgreSQL Database for your App using the Dashboard or via the aptible db:createCLI command, substituting $DB_HANDLE with the database name of your choice:

aptible db:create "$DB_HANDLE" --type postgresql

The aptible db:create command will return a connection string on success. This is a Database Credential that is needed to configure your App. This connection string can be accessed in the Dashboard by clicking on Reveal under Credentials in the database page. Going forward in this document, we'll refer to the Credentials as $DATABASE_URL.

📘 Databases are only reachable from within your Stack's internal network. This means your Containers will be able to connect to your database, but if you want to connect from your workstation, you'll need to use a Database Tunnel.

Update App Configuration

Configure the App to point it to the newly provisioned Database by adding the required environment variable. Use the aptible config:set command as documented below, substituting $APP_HANDLE and $DATABASE_URL with their proper values.

aptible config:set --app "$APP_HANDLE" \
    "DATABASE_URL=$DATABASE_URL"

This command will result in the app deploying again to reflect the updated configuration.