From c71eb721cca0a47208165e07d56fefdaeb354ffe Mon Sep 17 00:00:00 2001 From: Robert Fletcher Date: Fri, 26 Sep 2025 10:21:44 -0700 Subject: [PATCH] Errors: remove port from Procfile This is already handled inside of `config/puma.rb`, and it causes a `NoMethodError` when there is no `PORT` env variable. --- Procfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Procfile b/Procfile index c41f453d9..8c789e438 100644 --- a/Procfile +++ b/Procfile @@ -1,2 +1,2 @@ -web: bundle exec puma -p $PORT -C ./config/puma.rb +web: bundle exec puma -C ./config/puma.rb release: bundle exec rails db:migrate