From 45d8694e17803a4aec335acc7dbae68d54b4f5de Mon Sep 17 00:00:00 2001 From: Adrian Salceanu Date: Thu, 16 Nov 2023 16:56:03 +0100 Subject: [PATCH] Don't set channel --- Project.toml | 2 +- app/resources/applications/ApplicationsController.jl | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index c1f4765a..f05bc7fc 100755 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "GenieBuilder" uuid = "c9453c14-af8a-11ec-351d-c7c9a2035d70" authors = ["Adrian Salceanu"] -version = "0.16.19" +version = "0.16.20" [deps] Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" diff --git a/app/resources/applications/ApplicationsController.jl b/app/resources/applications/ApplicationsController.jl index 0d9318c2..05ef662f 100755 --- a/app/resources/applications/ApplicationsController.jl +++ b/app/resources/applications/ApplicationsController.jl @@ -421,15 +421,16 @@ function start(app::Application) using GenieFramework.Genie; Core.eval(Main, :(const UserApp = $(@__MODULE__))); Genie.genie(context = @__MODULE__); - up(; async = true, open_browser = true, query = Dict("CHANNEL__" => ENV["CHANNEL__"])); + up(; async = true, open_browser = true); while true sleep(1) end '`; dir = fullpath(app), detach = false) cmd = addenv(cmd, "PORT" => app.port, + # "HOST" => "0.0.0.0", "WSPORT" => app.port, "WSEXPPORT" => app.port, - "CHANNEL__" => app.channel, + # "CHANNEL__" => app.channel, "GENIE_ENV" => "dev", "GENIE_BANNER" => "false", "GENIE_PUSH_ERRORS" => "false",)