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