-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.jl
39 lines (35 loc) · 950 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using Documenter, DocumenterTools
push!(LOAD_PATH,"../src/")
using NumNN
makedocs(
sitename = "NumNN.jl",
authors = "Mohammad Hizzani",
# doctest = false,
# clean = true,
# linkcheck = false,
format = Documenter.HTML(
prettyurls = get(ENV, "CI", nothing) == "true"
),
modules = [NumNN],
pages = Any[
"Home" => "index.md",
"Docstrings" => "docstrings.md",
"Tutorials" => "tutorials.md"
],
)
# Documenter can also automatically deploy documentation to gh-pages.
# See "Hosting Documentation" and deploydocs() in the Documenter manual
# for more information.
#=deploydocs(
repo = "<repository url>"
)=#
deploydocs(
repo = "github.com/MohHizzani/NumNN.jl.git",
target = "build",
# push_preview = true,
branch = "gh-pages",
devurl = "dev",
versions = ["stable" => "v^", "v#.#.#", "dev" => "dev"],
# make = nothing,
# forcepush = true,
)