Flux.jl/docs/make.jl
2017-01-18 23:19:30 +00:00

26 lines
829 B
Julia

using Documenter, Flux
makedocs(modules=[Flux],
doctest = false,
format = :html,
analytics = "UA-36890222-9",
sitename = "Flux",
assets = ["../flux.css"],
pages = ["Home" => "index.md",
"Building Models" => [
"First Steps" => "models/basics.md",
"Recurrence" => "models/recurrent.md",
"Debugging" => "models/debugging.md"],
"In Action" => [
"Logistic Regression" => "examples/logreg.md"],
"Contributing & Help" => "contributing.md",
"Internals" => "internals.md"])
deploydocs(
repo = "github.com/MikeInnes/Flux.jl.git",
target = "build",
osname = "linux",
julia = "0.5",
deps = nothing,
make = nothing)