From 31660e8292976d63cb308d530e70450b020710d4 Mon Sep 17 00:00:00 2001 From: dgonzdev Date: Fri, 14 Nov 2025 08:22:32 -0500 Subject: [PATCH] setup for heroku deployments --- Gemfile | 2 ++ Gemfile.lock | 3 +++ Procfile | 2 ++ 3 files changed, 7 insertions(+) create mode 100644 Procfile diff --git a/Gemfile b/Gemfile index 20847aa..3290de0 100755 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,7 @@ source "https://rubygems.org" +ruby "3.1.4" + # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" gem "rails", "~> 7.2.3" # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] diff --git a/Gemfile.lock b/Gemfile.lock index ec6bf70..8fa18d7 100755 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -303,5 +303,8 @@ DEPENDENCIES tzinfo-data web-console +RUBY VERSION + ruby 3.1.4p223 + BUNDLED WITH 2.3.26 diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..faf3810 --- /dev/null +++ b/Procfile @@ -0,0 +1,2 @@ +release: bundle exec rake db:migrate +web: bundle exec rails server -p $PORT