mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 13:41:31 +08:00
DEV: Set DISCOURSE_PORT when spawning unicorn via ember-cli -u
(#13346)
This means that Discourse will use the ember-cli proxy's port number in various places like auth redirects and emails
This commit is contained in:
parent
f12551afd3
commit
3b6d6c7024
|
@ -49,7 +49,8 @@ end
|
|||
system "yarn -s install --cwd #{yarn_dir}"
|
||||
|
||||
if ARGV.include?("-u") || ARGV.include?("--unicorn")
|
||||
unicorn_pid = spawn(__dir__ + "/unicorn")
|
||||
unicorn_env = { "DISCOURSE_PORT" => ENV["DISCOURSE_PORT"] || "4200" }
|
||||
unicorn_pid = spawn(unicorn_env, __dir__ + "/unicorn")
|
||||
|
||||
Thread.new do
|
||||
require 'open3'
|
||||
|
|
Loading…
Reference in New Issue
Block a user