Skip to content

Commit 9e0f1dd

Browse files
committed
.
1 parent e865de2 commit 9e0f1dd

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*DS_Store
22
Manifest.toml
3+
docs/build

docs/Project.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
4+
[compat]
5+
Documenter = "^0.24"

docs/make.jl

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using Documenter, MLJLinearModels
2+
3+
makedocs(
4+
modules = [MLJLinearModels],
5+
format = Documenter.HTML(
6+
prettyurls = !("local" in ARGS),
7+
),
8+
sitename = "MLJLinearModels.jl",
9+
authors = "Thibaut Lienart, and contributors.",
10+
pages = [
11+
"Home" => "index.md",
12+
]
13+
)
14+
15+
deploydocs(
16+
repo = "github.com/alan-turing-institute/MLJLinearModels.jl"
17+
)

docs/src/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# MLJLinearModels.jl

0 commit comments

Comments
 (0)