From 1ce328511a21d3369aa57227194ec58ea36f7b1a Mon Sep 17 00:00:00 2001 From: Jonathan Rosenbaum Date: Sat, 31 Jan 2026 19:00:18 +0000 Subject: [PATCH] Rename application directory from 'rails' to 'BikeBike' in unicorn configuration --- config/unicorn.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/unicorn.rb b/config/unicorn.rb index ebe6afc..4673925 100644 --- a/config/unicorn.rb +++ b/config/unicorn.rb @@ -1,6 +1,6 @@ rails_env = ENV['RAILS_ENV'] || 'production' -dir = 'rails' +dir = 'BikeBike' if ENV['RAILS_ENV'] == 'preview' worker_processes 1 @@ -8,7 +8,7 @@ if ENV['RAILS_ENV'] == 'preview' port = 8081 else worker_processes 2 - directory = '/home/rails' + directory = '/app/BikeBike' port = 8080 end