Skip to content

Commit

Permalink
Add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
luraess committed Sep 13, 2023
1 parent bb7441b commit 8005d0d
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build/
site/
5 changes: 5 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

[compat]
Documenter = "0.27"
19 changes: 19 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using Documenter
using FastIce

push!(LOAD_PATH,"../src/")

makedocs(
sitename = "FastIce",
authors="Ludovic Räss, Ivan utkin and contributors",
format = Documenter.HTML(; prettyurls=get(ENV, "CI", nothing) == "true"), # easier local build
modules = [FastIce],
pages=[
"Home" => "index.md",
]
)

deploydocs(
repo = "github.com/PTsolvers/FastIce.jl.git",
devbranch = "main"
)
Binary file added docs/src/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# FastIce.jl

Documentation for FastIce.jl
2 changes: 1 addition & 1 deletion src/FastIce.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ include("physics.jl")
include("BoundaryConditions/boundary_conditions.jl")
include("Models/models.jl")

include("distributed.jl")
# include("Distributed/distributed.jl")

end # module

0 comments on commit 8005d0d

Please sign in to comment.