discourse/bin/rails

12 lines
321 B
Plaintext
Raw Normal View History

#!/usr/bin/env ruby
if !ENV["RAILS_ENV"] && (ARGV[0] == "s" || ARGV[0] == "server")
2018-08-07 16:38:16 +08:00
ENV["UNICORN_PORT"] = "3000"
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'