Rename application directory from 'rails' to 'BikeBike' in unicorn configuration

This commit is contained in:
Jonathan Rosenbaum 2026-01-31 19:00:18 +00:00
parent 32f95d7ae4
commit 1ce328511a

View File

@ -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