Skip to content

Commit 2a79160

Browse files
committed
# Conflicts: # Project.toml
2 parents 5bf5df5 + cc1d55f commit 2a79160

7 files changed

Lines changed: 58 additions & 1 deletion

File tree

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
/Manifest.toml
1+
Manifest.toml
2+
sessions/
3+
build/
4+
.DS_Store

docs/Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
GenieAuthorisation = "af3f74f6-a62a-4aa2-b188-7ea1105ee18f"

docs/_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
theme: jekyll-theme-minimal

docs/make.jl

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
using Documenter
2+
3+
push!(LOAD_PATH, "../../src")
4+
5+
using GenieAuthorisation
6+
7+
makedocs(
8+
sitename = "GenieAuthorisation - User Authorisation for Genie",
9+
format = Documenter.HTML(prettyurls = false),
10+
pages = [
11+
"Home" => "index.md",
12+
"GenieAuthorisation API" => [
13+
"GenieAuthorisation" => "API/genieauthorisation.md",
14+
]
15+
],
16+
)
17+
18+
deploydocs(
19+
repo = "github.com/GenieFramework/GenieAuthorisation.jl.git",
20+
)

docs/mkdocs.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
site_name: GenieAuthorisation.jl
2+
repo_url: https://github.com/GenieFramework/GenieAuthorisation.jl
3+
site_description: User Authorisation for Genie.jl
4+
site_author: Adrian Salceanu
5+
6+
theme: readthedocs
7+
8+
extra_css:
9+
- assets/Documenter.css
10+
11+
markdown_extensions:
12+
- extra
13+
- tables
14+
- fenced_code
15+
- mdx_math
16+
17+
docs_dir: 'build'
18+
19+
pages:
20+
- Home: index.md

docs/src/API/genieauthorisation.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
```@meta
2+
CurrentModule = GenieAuthorisation
3+
```
4+
5+
```@autodocs
6+
Modules = [GenieAuthorisation]
7+
```

docs/src/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# GenieAuthorisation
2+
3+
User Authorisation for Genie.jl

0 commit comments

Comments
 (0)