Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 609 Bytes

CONTRIBUTING.md

File metadata and controls

30 lines (22 loc) · 609 Bytes

Contributing to Pluto.jl

Great that you want to contribute! It’s an easy package to contribute to, and you will make lots of people happy!

One tip: use Revise!

Setup step:

  1. add Pluto
  2. clone PlutoUI to your computer and open it as a project in VS Code
julia> ]
(v1.5) pkg> dev path/to/clone/of/PlutoUI.jl
(v1.5) pkg> add Revise
  1. create a new notebook, and start with:
begin
    using Revise
    using PlutoUI
end
  1. Now, whenever you change the PlutoUI code in VS Code, you can re-run cells in your notebook, and they use the latest code!

have fun!

-fonsi