Pluto.run() to open a specific notebook

I could not find out how to open a specific notebook instead of just starting the server.
Is that possible?
Thanks
Michel

1 Like

You can run it like this

Pluto.run(notebook="path_to_notebook")

I sadly did not find it mentioned in the documentation, but here is the ServerOptions struct used to start the server:
https://github.com/fonsp/Pluto.jl/blob/baf286c51859276c1d989caa6d24eed5a2a4329b/src/Configuration.jl#L15-L26

8 Likes

thanks feanor12
it works
Michel