Skip to content

LouLouLibs/loulouJL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

"Private" registry

For utilities that probably should not make their way to the julia general registry.

Create a registry

From a barebone repository; see doc.

using LocalRegistry
create_registry("loulouJL",
    "https://github.com/LouLouLibs/loulouJL.git";
    description = "Registry for sharing personal packages and utilities",
    push = true,
    branch = "main")

Add or update a package to this registry

Inside a package folder ... activate the package and simply record it; see doc.

using LocalRegistry, Pkg
Pkg.activate(".")
# register to local clone of the registry repository
register(registry="/Users/loulou/Dropbox/projects_code/julia_packages/loulouJL", push=false)
# then edit Package.toml to switch git@github (ssh) to https: login
# then do not forget to push to the registry github repository

Add registry to julia install

If you want to add this registry to your julia (do only once per julia install)

pkg"registry add https://github.com/LouLouLibs/loulouJL.git"
Pkg.update()

Check that it works

Pkg.Registry.status()
Pkg.add("BazerUtils")
Pkg.status("BazerUtils")

Packages in this Registry

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors