-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathmake.jl
68 lines (57 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
push!(LOAD_PATH, "../src/")
using Documenter, Dojo
makedocs(
modules = [Dojo],
format = Documenter.HTML(prettyurls=false),
sitename = "Dojo",
pages = [
##############################################
## MAKE SURE TO SYNC WITH docs/src/index.md ##
##############################################
"index.md",
"Examples" => [
"examples/simulation.md",
"examples/reinforcement_learning.md",
"examples/system_identification.md",
"examples/trajectory_optimization.md",
],
"Creating a Mechanism" => [
"creating_mechanism/overview.md",
"creating_mechanism/mechanism_directly.md",
"creating_mechanism/mechanism_existing.md",
"creating_mechanism/environment_existing.md",
"creating_mechanism/tippetop.md",
"creating_mechanism/quadruped.md",
],
"Creating a Simulation" => [
"creating_simulation/define_simulation.md",
"creating_simulation/define_controller.md",
"creating_simulation/simulation_with_gradients.md",
],
"Environments" => [
"environments/overview.md",
],
"Background: Contact Models" => [
"background_contact/contact_models.md",
"background_contact/impact.md",
"background_contact/nonlinear_friction.md",
"background_contact/linearized_friction.md",
"background_contact/collisions.md",
],
"Background: Representations" => [
"background_representations/maximal_representation.md",
"background_representations/minimal_representation.md",
"background_representations/gradients.md",
],
"Background: Solver" => [
"background_solver/interior_point.md",
"background_solver/solver_options.md",
],
"api.md",
"contributing.md",
"citing.md"
]
)
deploydocs(
repo = "github.com/dojo-sim/Dojo.jl.git",
)