forked from SciML/ModelOrderReduction.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake.jl
More file actions
21 lines (17 loc) · 666 Bytes
/
make.jl
File metadata and controls
21 lines (17 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Documenter, ModelOrderReduction
cp("./docs/Manifest.toml", "./docs/src/assets/Manifest.toml", force = true)
cp("./docs/Project.toml", "./docs/src/assets/Project.toml", force = true)
include("pages.jl")
makedocs(
sitename = "ModelOrderReduction.jl",
authors = "Bowen S. Zhu",
modules = [ModelOrderReduction],
clean = true, doctest = false, linkcheck = true,
warnonly = [:missing_docs, :example_block],
format = Documenter.HTML(
assets = ["assets/favicon.ico"],
canonical = "https://docs.sciml.ai/ModelOrderReduction/stable/"
),
pages = pages
)
deploydocs(repo = "github.com/SciML/ModelOrderReduction.jl.git")