Skip to content

Commit 6b6820e

Browse files
committed
add documentation starter
1 parent a064685 commit 6b6820e

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

docs/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build/
2+
site/

docs/Project.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

docs/make.jl

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using Documenter
2+
using PhytoAgentModel
3+
4+
makedocs(
5+
sitename = "PhytoAgentModel",
6+
format = Documenter.HTML(),
7+
modules = [PhytoAgentModel]
8+
)
9+
10+
# Documenter can also automatically deploy documentation to gh-pages.
11+
# See "Hosting Documentation" and deploydocs() in the Documenter manual
12+
# for more information.
13+
#=deploydocs(
14+
repo = "<repository url>"
15+
)=#

docs/src/index.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# PhytoAgentModel.jl
2+
3+
Documentation for PhytoAgentModel.jl

0 commit comments

Comments
 (0)