summaryrefslogtreecommitdiffstats
path: root/src/arrow/julia/Arrow/docs/make.jl
blob: 8ee74257f7328d426ed2e9259a9acc064f1e6135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using Documenter
using Arrow


makedocs(;
    modules=[Arrow],
    repo="https://github.com/JuliaData/Arrow.jl/blob/{commit}{path}#L{line}",
    sitename="Arrow.jl",
    format=Documenter.HTML(;
        prettyurls=get(ENV, "CI", "false") == "true",
        canonical="https://JuliaData.github.io/Arrow.jl",
        assets=String[],
    ),
    pages = [
        "Home" => "index.md",
        "User Manual" => "manual.md",
        "API Reference" => "reference.md"
    ]
)

deploydocs(;
    repo="github.com/JuliaData/Arrow.jl",
    devbranch = "main"
)