-
Notifications
You must be signed in to change notification settings - Fork 21
/
mkdocs.yml
77 lines (68 loc) · 2.06 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
site_name: Balsam
site_url: https://balsam.readthedocs.io/en/latest/
nav:
- Home: README.md
- Tutorials:
- Getting Started: tutorials/theta-quickstart.md
- User Guide:
- Installation: user-guide/installation.md
- Creating Balsam Sites: user-guide/site-config.md
- Defining Apps: user-guide/appdef.md
- The Command Line: user-guide/cli.md
- Managing Jobs: user-guide/jobs.md
- The Python API: user-guide/api.md
- Executing Jobs: user-guide/batchjob.md
- Workflow Monitoring and Analytics: user-guide/monitoring.md
- Auto Scaling: user-guide/elastic.md
- Data Transfers: user-guide/transfer.md
- Developer Guide:
- Instructions: development/contributing.md
- Understanding the Data Model: development/data-model.md
- Project Layout: development/layout.md
- Porting to New Sites: development/porting.md
- Integration Testing: development/testing.md
- The Python REST Client: development/client.md
- Admin Guide: development/deploy.md
- Publications: community/publications.md
- License: LICENSE.md
theme:
name: 'material'
language: 'en'
palette:
primary: 'indigo'
accent: 'amber'
scheme: 'preference'
features:
- navigation.instant
- navigation.tabs
logo: './img/balsam_favicon.ico'
favicon: './img/balsam_favicon.ico'
markdown_extensions:
- admonition
- codehilite
- attr_list
- toc:
permalink: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
extra_css:
- extra.css
extra_javascript:
- mermaid.min.js
repo_name: 'argonne-lcf/balsam'
repo_url: 'https://github.com/argonne-lcf/balsam'
edit_uri: edit/main/docs/
extra:
social:
- icon: 'fontawesome/brands/github-alt'
link: 'https://github.com/argonne-lcf/balsam'
plugins:
- search