what has been done:
mkdir julia-proj-example
cd julia-proj-example/
in julia
]activate .
]add NotebookHelper
this generates a local Project.toml
. You may want to add all other packages here.
In the project dir run julia --proj
generate modules/MyLocalModule
develop modules/MyLocalModule
This generates a local package modules/MyLocalModule
and through the develop
makes it available for the project via using MyLocalModule
.