diff --git a/src/Pluto.jl b/src/Pluto.jl index fc4793d837..f584b13c63 100644 --- a/src/Pluto.jl +++ b/src/Pluto.jl @@ -27,18 +27,6 @@ const ENV_DEFAULTS = Dict( ) get_pl_env(key::String) = haskey(ENV, key) ? ENV[key] : ENV_DEFAULTS[key] -if get(ENV, "PLUTO_SHOW_BANNER", "true") == "true" -@info """\n - Welcome to Pluto $(PLUTO_VERSION_STR) 🎈 - Start a notebook server using: - - julia> Pluto.run() - - Have a look at the FAQ: - https://github.com/fonsp/Pluto.jl/wiki -\n""" -end - include("./evaluation/Tokens.jl") include("./runner/PlutoRunner.jl") include("./analysis/ExpressionExplorer.jl") @@ -65,4 +53,16 @@ include("./webserver/Dynamic.jl") include("./webserver/REPLTools.jl") include("./webserver/WebServer.jl") +if get(ENV, "PLUTO_SHOW_BANNER", "true") == "true" +@info """\n + Welcome to Pluto $(PLUTO_VERSION_STR) 🎈 + Start a notebook server using: + + julia> Pluto.run() + + Have a look at the FAQ: + https://github.com/fonsp/Pluto.jl/wiki +\n""" +end + end