2017-01-16 00:46:50 +00:00
|
|
|
using Documenter, Flux
|
|
|
|
|
|
|
|
makedocs(modules=Module[Flux],
|
2017-01-16 16:51:01 +00:00
|
|
|
doctest=false, clean=false,
|
2017-01-16 00:46:50 +00:00
|
|
|
format = :html,
|
2017-01-16 15:34:14 +00:00
|
|
|
analytics = "UA-36890222-9",
|
2017-01-16 16:11:07 +00:00
|
|
|
sitename="Flux",
|
2017-01-16 00:46:50 +00:00
|
|
|
pages = [
|
2017-01-16 16:51:21 +00:00
|
|
|
"Home" => "index.md",
|
|
|
|
"Getting Started" => [
|
|
|
|
"Basics" => "mnist.md"
|
|
|
|
]
|
2017-01-16 00:46:50 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
deploydocs(
|
|
|
|
repo = "github.com/MikeInnes/Flux.jl.git",
|
|
|
|
target = "build",
|
|
|
|
osname = "linux",
|
|
|
|
julia = "0.5",
|
|
|
|
deps = nothing,
|
|
|
|
make = nothing)
|