Skip to content

ArndtLab/julia-proj-example

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
September 8, 2023 23:33
August 3, 2023 15:19
August 4, 2023 10:44
August 4, 2023 16:21
August 3, 2023 15:32
August 3, 2023 15:19

Setup Project

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.

Init strictly local packages:

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.