Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Setup docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
helgee committed Mar 13, 2017
1 parent 6ff0936 commit b52b202
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
data/
.DS_Store
._.DS_Store
docs/build/
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,6 @@ script:
- julia -e 'Pkg.clone(pwd()); Pkg.build("Astrodynamics"); Pkg.test("Astrodynamics"; coverage=true)'

after_success:
- julia -e 'cd(Pkg.dir("Astrodynamics")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())
- julia -e 'Pkg.add("Documenter")'
- julia -e 'cd(Pkg.dir("Astrodynamics")); include(joinpath("docs", "make.jl"))'
- julia -e 'cd(Pkg.dir("Astrodynamics")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ Pkg.clone("https://github.com/JuliaAstrodynamics/AstroDynModels.jl.git")
Pkg.clone("https://github.com/JuliaAstrodynamics/AstroDynPlots.jl.git")
Pkg.clone("https://github.com/JuliaAstrodynamics/Astrodynamics.jl.git")
```

[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaastrodynamics.github.io/Astrodynamics.jl/stable)
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://juliaastrodynamics.github.io/Astrodynamics.jl/latest)
File renamed without changes
17 changes: 17 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using Documenter, Astrodynamics

makedocs(
format = :html,
sitename = "Astrodynamics.jl",
authors = "Helge Eichhorn",
pages = [
"Home" => "index.md",
],
)

deploydocs(
repo = "github.com/JuliaAstrodynamics/Astrodynamics.jl.git",
target = "build",
deps = nothing,
make = nothing,
)
Empty file added docs/src/index.md
Empty file.

0 comments on commit b52b202

Please sign in to comment.