|
1 |
| -using MLFlowClient |
| 1 | +push!(LOAD_PATH, "../src/") |
2 | 2 | using Documenter
|
3 |
| - |
4 |
| -DocMeta.setdocmeta!(MLFlowClient, :DocTestSetup, :(using MLFlowClient); recursive=true) |
| 3 | +using MLFlowClient |
5 | 4 |
|
6 | 5 | makedocs(;
|
7 |
| - modules=[MLFlowClient], |
8 |
| - authors="@deyandyankov and contributors", |
9 |
| - repo="https://github.com/JuliaAI.jl/blob/{commit}{path}#{line}", |
10 | 6 | sitename="MLFlowClient.jl",
|
11 |
| - format=Documenter.HTML(; |
12 |
| - prettyurls=get(ENV, "CI", "false") == "true", |
13 |
| - canonical="https://juliaai.github.io/MLFlowClient.jl", |
14 |
| - assets=String[] |
15 |
| - ), |
16 |
| - pages=[ |
17 |
| - "Home" => "index.md", |
18 |
| - "Tutorial" => "tutorial.md", |
19 |
| - "Reference" => "reference.md" |
20 |
| - ], |
21 |
| - checkdocs=:exports |
22 |
| -) |
| 7 | + authors="@deyandyankov and contributors", |
| 8 | + pages=["Home" => "index.md", "Tutorial" => "tutorial.md", "Reference" => [ |
| 9 | + "Types" => "reference/types.md", "Artifact operations" => "reference/artifact.md", |
| 10 | + "Experiment operations" => "reference/experiment.md", |
| 11 | + "Logging operations" => "reference/logger.md", |
| 12 | + "Miscellaneous operations" => "reference/misc.md", |
| 13 | + "Run operations" => "reference/run.md", |
| 14 | + "Registered model operations" => "reference/registered_model.md", |
| 15 | + "Model version operations" => "reference/model_version.md", |
| 16 | + "User operations" => "reference/user.md",]]) |
23 | 17 |
|
24 |
| -deploydocs(; |
25 |
| - repo="github.com/JuliaAI/MLFlowClient.jl", |
26 |
| - devbranch="main" |
27 |
| -) |
| 18 | +deploydocs(; repo="github.com/JuliaAI/MLFlowClient.jl", devbranch="main") |
0 commit comments