Episode 425 - Kamal in GitHub Actions | Drifting Ruby
Too bad it’s locked behind a subscription, so it’s not really useful to me at this point. Prolly never will too, cos I’d have figured it out before I’m able to afford the subscription.
UUID Primary Key in Rails 6 with PostgreSQL and ActiveRecord
UUID also known as GUID is an alternative primary key type for SQL databases. It offers some non-obvious advantages compared to standard integer-based keys. Rails 6 release fresh out of beta introduces a new feature in ActiveRecord that makes working with UUID primary keys more straightforward. In this tutorial, we will dive deep into UUIDs with all their cons and pros.
Take our Rails app global with built-in Rails tool and some optional gems. From static text to user-generated content, your app will be a world traveler.
Getting Started with RailsThis guide covers getting up and running with Ruby on Rails.After reading this guide, you will know: How to install Rails, create a new Rails application, and connect your application to a database. The general layout of a Rails application. The basic principles of MVC (Model, View, Controller) and RESTful design. How to quickly generate the starting pieces of a Rails application.
Continuous Deployment with Rails & GitHub Actions (Example) | GoRails
Continuous Deployment is the automation of deploying any code that gets merged into your main or release branch. We can easily set up GitHub Actions to run CI and CD for us to automate everything.