Skip to content
Snippets Groups Projects
make.jl 773 B
Newer Older

using Documenter, MarkovProcesses

makedocs(
    sitename = "MarkovProcesses.jl",
    modules = [MarkovProcesses],
    pages = [
        "Home" => "index.md",
        "Getting Started" => "starting.md",
        "Create a model" => "create_model.md",
        "API" => Any[
            "Model" => "api/model.md",
            "Trajectory" => "api/trajectory.md",
            "Approximate Bayesian Computation" => "api/abc.md",
            "Plots" => "api/plots.md"
        ]
    ],
    format = Documenter.HTML(prettyurls = false)
)
Bentriou Mahmoud's avatar
Bentriou Mahmoud committed
config_gitlab = Documenter.GitLab()

Bentriou Mahmoud's avatar
Bentriou Mahmoud committed
deploydocs(
    repo = "gitlab-research.centralesupelec.fr/2017bentrioum/markovprocesses.jl.git",
    deploy_config = config_gitlab,
Bentriou Mahmoud's avatar
Bentriou Mahmoud committed
    devbranch = "ci_tests",
    devurl = "dev",
Bentriou Mahmoud's avatar
Bentriou Mahmoud committed
    branch = "pages"