discourse/bin/rails

11 lines
284 B
Plaintext
Raw Normal View History

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