Skip to content

Commit

Permalink
Add barebone docs
Browse files Browse the repository at this point in the history
  • Loading branch information
frankier committed Nov 24, 2023
1 parent c7f8881 commit ba081ed
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/Manifest.toml
/test/test-results.xml
/docs/build/
/docs/Manifest.toml
5 changes: 5 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[deps]
AdaptiveTestPlots = "d194c7c1-4081-4169-ba52-101f65b44e42"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
FittedItemBanks = "3f797b09-34e4-41d7-acf6-3302ae3248a5"
LiveServer = "16fef848-5104-11e9-1b77-fb7a48bbb589"
24 changes: 24 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
using AdaptiveTestPlots
using Documenter
using Documenter.Remotes: GitHub

format = Documenter.HTML(
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://JuliaPsychometricsBazaar.github.io/AdaptiveTestPlots.jl",
)

makedocs(;
modules=[AdaptiveTestPlots],
authors="Frankie Robertson",
repo = GitHub("JuliaPsychometricsBazaar", "AdaptiveTestPlots.jl"),
sitename="AdaptiveTestPlots.jl",
format=format,
pages=[
"Home" => "index.md",
],
)

deploydocs(;
repo="github.com/JuliaPsychometricsBazaar/AdaptiveTestPlots.jl",
devbranch="main",
)
12 changes: 12 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# AdaptiveTestPlots.jl

This is a package for plotting recordings of CATs (Computerised Adaptive Tests).

```@meta
CurrentModule = AdaptiveTestPlots
```

## Index

```@index
```

0 comments on commit ba081ed

Please sign in to comment.