A dummy package for the Julia Concise Tutorial
To create a new package (let's say MyPackage):
- fork this package in your own or your organisation account (let's say
MyUser) - from the github interface:
- edit the
README.mdfile to update the badges - edit the
Project.tomlfile to change package name, author, dependences and UUID (you can get a new UUID from a Julia prompt withusing UUIDs; uuid1()) - edit the file
.github/workflows/ci.ymlto update the package name - rename the file
src/MyAwesomePackage.jland edit its content (docstring and module name) to reflect the new name - in
docs/make.jlrename all the occurrences ofMyAwesomePackagetoMyPackage(including the account/organisation name where to deploy the documentation) - update
docs/src/index.mdanddocs/src/anotherPage.md
- edit the
- get it in julia. From a Julia prompt type
] [ENTER]to enter thepkgprompt and thenadd git@github.com:MyUser/MyPackage.jl.git - declare you want to develop it. Still from the
pkgprompt, type;dev MyPackage. Your new package will be in[JULIA_ROOT]/dev/MyPackage.