diff --git a/src/Configuration.jl b/src/Configuration.jl index f28f26b1c8..2a98314264 100644 --- a/src/Configuration.jl +++ b/src/Configuration.jl @@ -48,7 +48,7 @@ end For internal use only. """ Base.@kwdef mutable struct EvaluationOptions - run_notebook_on_load::Bool = true + run_notebook_on_load::Bool = false workspace_use_distributed::Bool = true end diff --git a/src/Neptune.jl b/src/Neptune.jl index 9aaa9bee7e..18a0ae91a0 100644 --- a/src/Neptune.jl +++ b/src/Neptune.jl @@ -52,13 +52,10 @@ include("./webserver/WebServer.jl") if get(ENV, "JULIA_PLUTO_SHOW_BANNER", "1") !== "0" @info """\n - Welcome to Pluto $(PLUTO_VERSION_STR) 🎈 + Welcome to Neptune $(PLUTO_VERSION_STR) 🎈 Start a notebook server using: - julia> Pluto.run() - - Have a look at the FAQ: - https://github.com/fonsp/Pluto.jl/wiki + julia> Neptune.run() \n""" end diff --git a/src/notebook/Notebook.jl b/src/notebook/Notebook.jl index fc2a0a1182..56c39be82b 100644 --- a/src/notebook/Notebook.jl +++ b/src/notebook/Notebook.jl @@ -173,7 +173,7 @@ function load_notebook_nobackup(path::String)::Notebook end "Create a backup of the given file, load the file as a .jl Pluto notebook, save the loaded notebook, compare the two files, and delete the backup of the newly saved file is equal to the backup." -function load_notebook(path::String, run_notebook_on_load::Bool=true)::Notebook +function load_notebook(path::String, run_notebook_on_load::Bool=false)::Notebook backup_path = numbered_until_new(path; sep=".backup", suffix="", create_file=false) # local backup_num = 1 # backup_path = path diff --git a/src/webserver/WebServer.jl b/src/webserver/WebServer.jl index ad41a6531d..5b0b384b33 100644 --- a/src/webserver/WebServer.jl +++ b/src/webserver/WebServer.jl @@ -65,12 +65,12 @@ swallow_exception(f, exception_type::Type{T}) where T = """ Pluto.run() -Start Pluto! +Start Neptune! ## Keyword arguments You can configure some of Pluto's more technical behaviour using keyword arguments, but this is mostly meant to support testing and strange setups like Docker. If you want to do something exciting with Pluto, you can probably write a creative notebook to do it! - Pluto.run(; kwargs...) + Neptune.run(; kwargs...) For the full list, see the [`Pluto.Configuration`](@ref) module. Some **common parameters**: