-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmake.jl
25 lines (23 loc) · 917 Bytes
/
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
using OHDSIAPI
using Documenter
makedocs(;
modules = [OHDSIAPI],
authors = "Jacob Zelko (aka TheCedarPrince) <jacobszelko@gmail.com>, Varshini Chinta <varshini.chinta@gmail.com>, and contributors",
repo = "https://github.com/JuliaHealth/OHDSIAPI.jl/blob/{commit}{path}#L{line}",
sitename = "OHDSIAPI.jl",
format = Documenter.HTML(;
prettyurls = get(ENV, "CI", "false") == "true",
canonical = "https://JuliaHealth.github.io/OHDSIAPI.jl",
assets = String[],
edit_link = "dev",
footer = "Created by Varshini Chinta, [Jacob Zelko](https://jacobzelko.com), & [Georgia Tech Research Institute](https://www.gtri.gatech.edu). [License](https://github.com/JuliaHealth/OHDSIAPI.jl/blob/main/LICENSE)"
),
pages = [
"Home" => "index.md"
],
)
deploydocs(;
repo = "github.com/JuliaHealth/OHDSIAPI.jl",
push_preview = true,
devbranch = "main",
)