1
0
Fork 0
mirror of https://github.com/MillironX/beefblup.git synced 2024-11-14 19:43:09 +00:00
beefblup/docs/make.jl

27 lines
752 B
Julia
Raw Normal View History

using BeefBLUP
using Documenter
DocMeta.setdocmeta!(BeefBLUP, :DocTestSetup, :(using BeefBLUP); recursive=true)
makedocs(;
modules=[BeefBLUP],
2021-07-07 14:33:10 +00:00
authors="Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>",
repo="https://github.com/MillironX/beefblup/blob/{commit}{path}#{line}",
sitename="beefblup",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
2021-07-07 14:33:10 +00:00
canonical="https://millironx.com/beefblup",
assets=String[],
),
pages=[
"Home" => "index.md",
2021-08-29 13:08:23 +00:00
"How to Calculate EPDs" => "how-to-calculate-epds.md",
"CLI Reference (WIP)" => "beefblup-cli.md"
],
)
deploydocs(;
2021-08-10 00:31:25 +00:00
repo="github.com/MillironX/beefblup",
devbranch="develop",
)