· Joseph · DevOps  · 2 min read

Ruby on Jets - AWS serverless framework for Ruby on Rails

Ruby on Rails (RoR) is my favorite web framework, and today I will share an AWS serverless framework of RoR: Ruby on Jets. I’m not an AWS expert and even have no AWS certifications, and besides, this is my first time to use AWS Lambda, API gateway, dynamodb, and other serverless services.

Preparation:
Add aws_access_key_id and aws_secret_access_key to ~/.aws/credentials
Docker / Docker-compose I use in this demo.

Let's look at initial project structure:
project-structure.png

Ruby on Rails (RoR) is my favorite web framework, and today I will share an AWS serverless framework of RoR: Ruby on Jets. I’m not an AWS expert and even have no AWS certifications, and besides, this is my first time to use AWS Lambda, API gateway, dynamodb, and other serverless services.

Preparation:

  1. Add aws_access_key_id and aws_secret_access_key to ~/.aws/credentials
  2. Docker / Docker-compose I use in this demo.

Let’s look at initial project structure: project-structure.png

There’s my Gemfile, Dockerfile, and docker-compose.yml

Gemfile

source "https://rubygems.org"

gem "jets", "~> 3.0.0"

Dockerfile

FROM ruby:2.7
RUN apt-get update \
    && apt-get -y install rsync zip

WORKDIR /api
COPY ./api /api
RUN bundle install

docker-compose.yml

version: '3'

services:
  api:
    build:
      context: ../
      dockerfile: docker/api/Dockerfile
    command: bash -c "bundle exec jets server --port 3000 --host 0.0.0.0"
    environment:
      - AWS_PROFILE=default
      - AWS_REGION=ap-northeast-2
    volumes:
      - '../api:/api'
      - ~/.aws:/root/.aws
    ports:
      - "3000:3000"
    depends_on:
      - dynamodb
      - db
  dynamodb:
    image: instructure/dynamo-local-admin
    ports:
      - "8000:8000"
      - "8001:8001"
      - "8002:8002"
  db:
    image: mysql:8
    environment:
      MYSQL_ROOT_PASSWORD: root
      MYSQL_DATABASE: app
      MYSQL_USER: docker
      MYSQL_PASSWORD: docker
      TZ: 'Asia/Taipei'
    ports:
      - 3306:3306
    volumes:
      - ./mysql/conf.d:/etc/mysql/conf.d

Then, We go to docker folder to run docker-compose run api jets new . --database=mysql to install gems and generate Jets project. jets-new.png

Now we can use docker-compose up --build to build api, db, and dynamodb containers. docker-build.png

Can you see it? >> localhost:3000 localhost.png

Let’s CRUD

We have to grant DB user first:

In docker folder

$ > docker-compose exec db /bin/bash

In db container

root@db0c0d54dfef:/# mysql -uroot -p
mysql> GRANT ALL ON *.* to docker@'%';

After granting docker permission, we can generate scaffold, create database and install webpacker by using jets:

docker-compose exec api jets generate scaffold post title:string
docker-compose exec api jets db:create db:migrate
docker-compose exec api jets webpacker:install

Go to localhost/posts and see the result: localhost-posts

Finally, we are ready to deploy. env-file shows how to set environments. Let’s go to AWS RDS create a MySQL RDS, and set value to .env.development.remote. development-remote

Well done! Deploy it.

docker-compose exec api sh -c 'JETS_ENV_REMOTE=1 bundle exec jets db:create db:migrate'
docker-compose exec api sh -c 'JETS_ENV_REMOTE=1 bundle exec jets deploy'

jets-deploy

…Waiting…

We will get a URL, and we can get the page by clicking URL jets-deploy-done

serverless-page

That’s all. But I have to mention that if you get ERROR: Limit Reached when you deploy, you need to check serverlessgems rate-limits page. That’s why we eventually used AWS CDK and changed the language to Typescript in our Firstage All-in-one blog.

Next time I will introduce AWS CDK and which services we use.

Back to Blog

Related Posts

View All Posts »
AWS Cloud Development Kit (CDK) project structure

AWS Cloud Development Kit (CDK) project structure

Previously blog I used NodeJs/Typescript as a backend and deployed with AWS Cloud Development Kit (AWS CDK). The same framework, but more complex than the sample, is used on our Firstage. So this post I will show how we structure our AWS CDK project codebase. Project Structure project structure

Using Firebase and Firestore with NextJS and Docker - Part 1 - Setup firebase in docker

Using Firebase and Firestore with NextJS and Docker - Part 1 - Setup firebase in docker

Last year, I got a case to use firebase and firestore with Next.js. I've been fullstack many years, so I haven't tried to use firebase and firestore. There was a great chance to give it a try. In this article I'll show how to use firebase and firestore in Docker and Next.js. If you don't have backend support, or you don't want to build whole backend, database, and infrastructure, you would probably think this is a useful way.

Set godaddy domain and build hugo on gitlab pages

The idea comes from... I read a blog 將 Github Page 串上自己的域名 on Medium.com, and I thought about my bad experience in setting gitlab pages. I think I have to write a blog now, and let me remember how to set it again. Hugo First, install go and hugo: My system is Ubuntu 19.04, so I follow Go wiki instructions. sudo add-apt-repository ppa:longsleep/golang-backports sudo apt update sudo apt install golang-go