webauthn-rails-demo-app icon indicating copy to clipboard operation
webauthn-rails-demo-app copied to clipboard

Deploy using Kamal

Open santiagorodriguez96 opened this issue 10 months ago • 0 comments

Motivation

This PR configures kamal so that we can start using it for deploying to our AWS servers.

Details

You will need an .env file with these secrets SECRET_KEY_BASE and POSTGRES_PASSWORD

Steps to set up the servers in AWS:

  1. Run this to install docker
sudo apt update
sudo apt install -y docker.io curl git
sudo usermod -a -G docker ubuntu
  1. Add any authorized keys for people that need to connect with ssh
  2. For the web server run this (needed to auto generate SSL certificates using LetsEncrypt)
mkdir -p /home/ubuntu/letsencrypt && touch /home/ubuntu/letsencrypt/acme.json && chmod 600 /home/ubuntu/letsencrypt/acme.json
  1. Enable HTTPS (443) incoming traffic in web instance
  2. Enable ports 5432 for incoming traffic in DB instance
  3. Run kamal setup

For normal deploys run kamal deploy. If env vars change you will have to push them with kamal env push

santiagorodriguez96 avatar Apr 01 '24 19:04 santiagorodriguez96