Source code for DMFT calculations for my master's thesis.
As the package is not inside the General registry, it needs to be added manually.
export JULIA_PKG_USE_CLI_GIT="true"
julia --project=path/to/project --eval 'using Pkg; Pkg.add(url="https://github.com/frankebel/RAS_DMFT.jl")'If the package is installed, you can run all tests with
julia --project=path/to/project --eval 'using Pkg; Pkg.test("RAS_DMFT")'The documentation resides in docs.
Currently, it needs to be compiled manually
julia --project=path/to/package/docs --exec 'using Pkg; Pkg.develop(path=".."); Pkg.instantiate()'
julia --project=path/to/package/docs make.jlIt can then be viewed with, e.g. LiveServer.jl
using LiveServer
serve(dir="build")