Skip to content

Commit

Permalink
prefer continous localmake for now
Browse files Browse the repository at this point in the history
  • Loading branch information
hexaeder committed Dec 2, 2024
1 parent cfdf9ed commit edaee35
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/localmake.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ use the updated `*.md` and source files. This way the Julia session keeps alive
individual builds are much faster.
=#

#=
using Pkg
Pkg.activate(@__DIR__)
Pkg.develop(PackageSpec(path=dirname(@__DIR__))) # adds the package this script is called from
Pkg.instantiate()
print("Do you want to update docs environment? [y/n] ")
answer = readline()
Expand Down Expand Up @@ -47,3 +47,17 @@ while true
break
end
end
=#


using Pkg
Pkg.activate(@__DIR__)
using NetworkDynamics
using LiveServer

cd(pkgdir(NetworkDynamics))

servedocs(
literate_dir = joinpath("docs", "examples"),
skip_dir = joinpath("docs", "src", "generated")
)

0 comments on commit edaee35

Please sign in to comment.