mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 10:33:51 +08:00
11 lines
282 B
Ruby
Executable File
11 lines
282 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
if !ENV["RAILS_ENV"] && (ARGV == ["s"] || ARGV == ["server"])
|
|
ENV["UNICORN_PORT"] = 3000
|
|
exec File.expand_path("unicorn", __dir__)
|
|
end
|
|
|
|
APP_PATH = File.expand_path('../config/application', __dir__)
|
|
require_relative '../config/boot'
|
|
require 'rails/commands'
|