Updating puma.rb to allow changing the rack environment dynamically
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2025-07-28 10:17:45 -04:00
parent 55e4f397f8
commit d59c75281e

View File

@ -1,7 +1,7 @@
app_dir = File.expand_path("..", __dir__)
app_dir = File.expand_path('..', __dir__)
directory app_dir
environment 'production'
environment ENV.fetch('RACK_ENV', 'development')
bind 'tcp://0.0.0.0:9292'
workers 2