From 61367a977e8c5d4efe8841eadd49fda09d2c6dde Mon Sep 17 00:00:00 2001 From: jazairi <16103405+jazairi@users.noreply.github.com> Date: Fri, 24 Jul 2026 10:01:47 -0700 Subject: [PATCH] Include Procfile Following a recent production deploy, GeoData went offline because the release had no runnable web process. It's unclear as yet why this happened in a one-off manner, but adding a Procfile should prevent it from occuring again. --- Procfile | 1 + 1 file changed, 1 insertion(+) create mode 100644 Procfile diff --git a/Procfile b/Procfile new file mode 100644 index 00000000..528ca4bf --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: bundle exec puma -C config/puma.rb \ No newline at end of file