ekneller@olivine:~/apps/julia/EarthBox/docs

Ensure that the following information is entered into the Project.toml file of 
the docs environment:

    Project.toml:

    [deps]
    Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
    EarthBox = "8cac4eb0-b9dc-491e-8029-d46e41f70254"

To setup the environment ensure that the manifest.toml file is removed then run:

    julia --project=. -e 'using Pkg; Pkg.develop(path="..")'
    julia --project=. -e 'using Pkg; Pkg.instantiate()'

To build documentation from the docs directory use:

    julia --project=. make.jl

To run a virtual server to allow web-like navigation of built documentation use:

julia --project=. -e 'using LiveServer; serve(dir="build")'

If you encounter issues after changing the EarthBox environment, from the docs 
directory run:

    julia --project=.

    using Pkg

    Pkg.rm("EarthBox")

    Pkg.develop(path="..")

    Pkg.instantiate()
