2021-02-09 00:33:14 -05:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'pathname'
|
|
|
|
|
|
|
|
RAILS_ROOT = File.expand_path("../../", Pathname.new(__FILE__).realpath)
|
2021-04-29 14:13:36 -04:00
|
|
|
PORT = ENV["UNICORN_PORT"] ||= "3000"
|
2021-02-09 00:33:14 -05:00
|
|
|
|
2021-05-07 12:58:57 -04:00
|
|
|
yarn_dir = File.join(RAILS_ROOT, "app/assets/javascripts/discourse")
|
2021-02-09 00:33:14 -05:00
|
|
|
|
|
|
|
PROXY =
|
|
|
|
if ARGV.include?("--try")
|
|
|
|
"https://try.discourse.org"
|
|
|
|
else
|
|
|
|
"http://localhost:#{PORT}"
|
|
|
|
end
|
|
|
|
|
2021-05-10 09:34:24 -04:00
|
|
|
command =
|
|
|
|
if ARGV.include?("--test")
|
|
|
|
"test"
|
|
|
|
else
|
|
|
|
"server"
|
|
|
|
end
|
|
|
|
|
|
|
|
class String
|
|
|
|
def cyan
|
|
|
|
"\e[36m#{self}\e[0m"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-02-09 00:33:14 -05:00
|
|
|
if ARGV.include?("-h") || ARGV.include?("--help")
|
|
|
|
puts "ember-cli OPTIONS"
|
2021-06-08 22:44:33 -04:00
|
|
|
puts "#{"--try".cyan} To proxy try.discourse.org"
|
|
|
|
puts "#{"--test".cyan} To run the test suite"
|
|
|
|
puts "#{"--unicorn, -u".cyan} To run a unicorn server as well"
|
2021-02-09 00:33:14 -05:00
|
|
|
puts "The rest of the arguments are passed to ember server per:", ""
|
2021-06-08 22:44:33 -04:00
|
|
|
exec "yarn -s --cwd #{yarn_dir} run ember #{command} --help"
|
2021-02-09 00:33:14 -05:00
|
|
|
end
|
|
|
|
|
2021-06-08 22:44:33 -04:00
|
|
|
args = ["-s", "--cwd", yarn_dir, "run", "ember", command] + ARGV.reject do |a|
|
|
|
|
["--try", "--test", "--unicorn", "-u"].include?(a)
|
|
|
|
end
|
2021-02-09 00:33:14 -05:00
|
|
|
|
|
|
|
if !args.include?("--proxy")
|
|
|
|
args << "--proxy"
|
|
|
|
args << PROXY
|
|
|
|
end
|
|
|
|
|
2021-06-08 22:44:33 -04:00
|
|
|
system "yarn -s install --cwd #{yarn_dir}"
|
|
|
|
|
2021-06-09 09:48:43 -04:00
|
|
|
if ARGV.include?("-u") || ARGV.include?("--unicorn")
|
2021-06-09 10:32:28 -04:00
|
|
|
unicorn_env = { "DISCOURSE_PORT" => ENV["DISCOURSE_PORT"] || "4200" }
|
|
|
|
unicorn_pid = spawn(unicorn_env, __dir__ + "/unicorn")
|
2021-06-08 22:44:33 -04:00
|
|
|
|
|
|
|
Thread.new do
|
|
|
|
require 'open3'
|
|
|
|
Open3.popen2e("yarn", *args.to_a.flatten) do |i, oe, t|
|
|
|
|
puts "Ember CLI running on PID: #{t.pid}"
|
|
|
|
oe.each do |line|
|
|
|
|
if line.include?("\e[32m200\e") || line.include?("\e[36m304\e[0m") || line.include?("POST /message-bus")
|
|
|
|
# skip 200s and 304s and message bus
|
|
|
|
else
|
|
|
|
puts line
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
trap("SIGINT") do
|
|
|
|
# we got to swallow sigint to give time for
|
|
|
|
# children to handle it
|
|
|
|
end
|
|
|
|
|
|
|
|
Process.wait(unicorn_pid)
|
|
|
|
|
|
|
|
else
|
|
|
|
exec "yarn", *args.to_a.flatten
|
|
|
|
end
|