Skip to content
Snippets Groups Projects
Select Git revision
  • a4925db8f585b899b35a63a12e23bac9159229f2
  • master default protected
  • julia1
  • furuta
  • v0.2.0
  • v0.1.0
6 results

define_furuta_system.jl

Blame
  • makeOld.jl 675 B
    push!(LOAD_PATH,"../src/")
    println(LOAD_PATH)
    using Documenter, LabConnections
    # makedocs()
    # deploydocs(
    # deps   = Deps.pip("pygments", "mkdocs", "python-markdown-math", "mkdocs-cinder"),
    # repo   = "gitlab.control.lth.se/processes/LabProcesses.jl",
    # branch = "gh-pages",
    # julia  = "0.6",
    # osname = "linux"
    # )
    
    makedocs(
        format = :html,
        sitename = "LabConnections",
        pages = [
            "index.md",
            "installation.md",
            "systemConfiguration.md",
            "testing.md",
            "examples.md",
        ]
    )
    
    deploydocs(
        repo   = "gitlab.control.lth.se/labdev/LabConnections.jl.git",
        target = "build",
        deps   = nothing,
        make   = nothing
    )