diff --git a/doc/Project.toml b/doc/Project.toml new file mode 100644 index 0000000..03340b1 --- /dev/null +++ b/doc/Project.toml @@ -0,0 +1,4 @@ +[deps] +DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2" +Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" +Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" \ No newline at end of file diff --git a/doc/make.jl b/doc/make.jl new file mode 100644 index 0000000..e6af2b4 --- /dev/null +++ b/doc/make.jl @@ -0,0 +1,22 @@ +using Documenter, IntroToJulia + +CI_FLG = get(ENV, "CI", nothing) == "true" + +makedocs( + modules = [IntroToJulia], + format = Documenter.HTML( + prettyurls = CI_FLG, + canonical = "#", + ), + sitename = "Intro To Julia Documentation", + pages = [ + + ], +) + +CI_FLG && include("make_examples.jl") + +deploydocs( + repo = "github.com/UCIDataScienceInitiative/IntroToJulia.git", + push_preview = true, +) \ No newline at end of file diff --git a/doc/src/index.md b/doc/src/index.md new file mode 100644 index 0000000..e69de29