mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:50:00 +08:00
ac1d344368
Using `bundle exec` will slow down server startup by at least 0.5s. `bin/unicorn` has built-in handling of bundler dependencies, so it is better to launch `bin/rails s` or `bin/unicorn` directly.
19 lines
448 B
Ruby
Executable File
19 lines
448 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
if !ENV["RAILS_ENV"] && (ARGV[0] == "s" || ARGV[0] == "server")
|
|
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("unicorn", __dir__)
|
|
end
|
|
|
|
APP_PATH = File.expand_path('../config/application', __dir__)
|
|
require_relative '../config/boot'
|
|
require 'rails/commands'
|