-
Notifications
You must be signed in to change notification settings - Fork 52
/
make.jl
55 lines (52 loc) · 1.47 KB
/
make.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
using Documenter
makedocs(
format=Documenter.HTML(
# Always use clean URLs so that raw HTML works, view local builds using a local
# HTTP server with `python3 -m http.server`, for example
prettyurls=true,
sidebar_sitename=false,
collapselevel=2,
assets=["assets/favicon.ico"]
),
sitename="Palace",
authors="Sebastian Grimberg, [email protected]",
pages=[
"Home" => "index.md",
"install.md",
"run.md",
"User Guide" => Any[
"guide/guide.md",
"guide/problem.md",
"guide/model.md",
"guide/boundaries.md",
"guide/postprocessing.md",
"guide/parallelism.md"
],
"Configuration File" => Any[
"config/config.md",
"config/problem.md",
"config/model.md",
"config/domains.md",
"config/boundaries.md",
"config/solver.md"
],
"Examples" => Any[
"examples/examples.md",
"examples/spheres.md",
"examples/rings.md",
"examples/cylinder.md",
"examples/coaxial.md",
"examples/cpw.md"
],
"developer.md",
"reference.md"
]
)
deploydocs(
repo="github.com/awslabs/palace.git",
devbranch="main",
push_preview=true,
forcepush=true
)