2017-01-16 00:46:50 +00:00
|
|
|
using Documenter, Flux
|
|
|
|
|
2017-01-17 20:04:01 +00:00
|
|
|
makedocs(modules=[Flux],
|
2017-01-17 20:24:53 +00:00
|
|
|
doctest = 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-17 20:04:01 +00:00
|
|
|
sitename = "Flux",
|
2017-01-17 20:24:49 +00:00
|
|
|
assets = ["../flux.css"],
|
2017-01-18 00:39:00 +00:00
|
|
|
pages = ["Home" => "index.md",
|
|
|
|
"Getting Started" => [
|
2017-01-18 01:15:55 +00:00
|
|
|
"Basics" => "manual/basics.md",
|
|
|
|
"Custom Layers" => "manual/custom.md",
|
|
|
|
"Recurrence" => "manual/recurrent.md",
|
|
|
|
"Debugging" => "manual/debugging.md"],
|
|
|
|
"Contributing & Help" => "contributing.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)
|