4

I have recently started using Pluto.jl, and it is quite nice (and visually appealing). The question is: how do I set up a "pluto server", like the similar thing with jupyter. It must be easy, but I see no docs.

Igor Rivin
  • 4,632
  • 2
  • 23
  • 35

1 Answers1

6

If your ip address is 0.0.0.0 on port 1234 run:

Pluto.run("0.0.0.0", 1234)

Source: https://github.com/fonsp/Pluto.jl/issues/398#issuecomment-689659028

FeFiFoFu
  • 1,069
  • 1
  • 11
  • 15
  • The final comment in the thread is not encouraging, but thank you! – Igor Rivin Dec 12 '21 at 02:04
  • 6
    The new syntax is Pluto.run(host="0.0.0.0") If you want to switch off the secret use Pluto.run(host="0.0.0.0", require_secret_for_access=false, launch_browser=false) – lungben Dec 13 '21 at 13:00