2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-03-03 22:05:52 +08:00
discourse/bin/rails
Loïc Guitaut a49b2dc46c
DEV: Enable Pitchfork by default (#37679)
This changes the logic from opt-in to opt-out regarding Pitchfork.

Now, instead of having to explicitly set `RUN_PITCHFORK` to `1`, it has
to be set to `0` to switch back to Unicorn.
2026-02-11 11:52:39 +01:00

18 lines
522 B
Ruby
Executable file

#!/usr/bin/env ruby
# frozen_string_literal: true
if !ENV["RAILS_ENV"] && (ARGV[0] == "s" || ARGV[0] == "server") && Process.respond_to?(:fork)
ENV["UNICORN_PORT"] ||= "3000"
if ARGV[1] == "-p" && (port = ARGV[2].to_i) > 0
ENV["UNICORN_PORT"] = port.to_s
end
ENV["RAILS_LOGS_STDOUT"] ||= "1"
exec File.expand_path(ENV["RUN_PITCHFORK"] == "0" ? "unicorn" : "pitchfork", __dir__)
end
APP_PATH = File.expand_path("../config/application", __dir__)
require_relative "../config/boot"
require "rails/commands"