summaryrefslogtreecommitdiffstats
path: root/src/arrow/julia/Arrow/docs/make.jl
diff options
context:
space:
mode:
Diffstat (limited to 'src/arrow/julia/Arrow/docs/make.jl')
-rw-r--r--src/arrow/julia/Arrow/docs/make.jl24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/arrow/julia/Arrow/docs/make.jl b/src/arrow/julia/Arrow/docs/make.jl
new file mode 100644
index 000000000..8ee74257f
--- /dev/null
+++ b/src/arrow/julia/Arrow/docs/make.jl
@@ -0,0 +1,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"
+)