From 85d12b5c77f3e0d24e8d8964b7f8c2b932782102 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Mon, 7 Apr 2025 22:21:09 +0200 Subject: [PATCH] dotenv instead of Rails credentials --- Gemfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Gemfile b/Gemfile index 5733f85..2762ea0 100644 --- a/Gemfile +++ b/Gemfile @@ -162,3 +162,8 @@ gem 'bzip2-ffi' # gem "dartsass-rails", "~> 0.5.1" gem 'rails-healthcheck' + +# .env files are used for credentials because the deployment system +# (Dokku) uses environment variables to specify the database connection string +# https://github.com/bkeepers/dotenv +gem 'dotenv'