mirror of
https://github.com/MillironX/beefblup.git
synced 2024-11-10 18:23:08 +00:00
24 lines
638 B
Julia
24 lines
638 B
Julia
using BeefBLUP
|
|
using Documenter
|
|
|
|
DocMeta.setdocmeta!(BeefBLUP, :DocTestSetup, :(using BeefBLUP); recursive=true)
|
|
|
|
makedocs(;
|
|
modules=[BeefBLUP],
|
|
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",
|
|
canonical="https://millironx.com/beefblup",
|
|
assets=String[],
|
|
),
|
|
pages=[
|
|
"Home" => "index.md",
|
|
],
|
|
)
|
|
|
|
deploydocs(;
|
|
repo="github.com/MillironX/beefblup",
|
|
devbranch="develop",
|
|
)
|