-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
89 lines (84 loc) · 2.84 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
77
78
79
80
81
82
83
84
85
86
87
88
89
site_name: RAT
site_description: Reservoir Assessment Tool 3.0
site_author: Sanchit Minocha | UW SASWE
repo_url: https://github.com/UW-SASWE/RAT
site_url: https://rat-satellitedams.readthedocs.io/
theme:
name: readthedocs
logo: 'logos/Rat_Logo_white.png'
highlightjs: true
hljs_languages:
- yaml
- rust
include_homepage_in_sidebar: false
features:
- content.code.copy
icon:
admonition:
success: fontawesome/solid/check
warning: fontawesome/solid/triangle-exclamation
copyright: Written and maintained by <a href="https://www.linkedin.com/in/sanchitminochaiitr/">Sanchit Minocha</a> <br> Copyright © 2023, <a href="https://saswe.net/">University of Washington SASWE Research Group</a> ; <a href="https://rat-satellitedams.readthedocs.io/en/latest/Disclaimer/disclaimer/"> Disclaimer </a>
docs_dir: docs
site_dir: site
use_directory_urls: true
markdown_extensions:
- admonition
- mdx_math
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.twemoji
emoji_generator: !!python/name:pymdownx.emoji.to_alt
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
plugins:
- markdownextradata
nav:
# Main pages
- Home:
- 'RAT': 'index.md'
- 'Motivation': 'Motivation/motivation.md'
- Model:
- 'Conceptual Model': 'Model/ConceptualModel.md'
- 'Computational Model': 'Model/ComputationalModel.md'
- Quick Start:
- 'Getting Ready': 'QuickStart/GettingReady.md'
- 'Download Guide': 'QuickStart/UserGuide.md'
- Commands:
- 'Command Line Interface': 'Commands/cli_commands.md'
- 'Python': 'Commands/python_commands.md'
- RAT Configuration:
- 'Configuration File': 'Configuration/rat_config.md'
- 'Secrets File': 'Configuration/secrets.md'
- 'Multiple Basin Run': 'Configuration/basins_metadata.md'
- Plugins:
- 'Forecasting': 'Plugins/Forecasting.md'
- 'ResORR': 'Plugins/Resorr.md'
- Data Description:
- 'Directory Structure': 'RAT_Data/DirectoryStructure.md'
- 'Global Database': 'RAT_Data/GlobalDatabase.md'
- Tutorials:
- 'Kickstart RAT for Beginners': 'Tutorials/KarnatakaFloods.md'
- Application:
- 'Web App': 'Applications/WebApp.md'
- Development:
- 'Recent Adjustments': 'Development/RecentAdjustments.md'
- 'Patch Notes': 'Development/PatchNotes.md'
- 'Dev Version': 'Development/DeveloperVersion.md'
- Contact:
- 'Contact': 'Contact/contact.md'
- Disclaimer:
- 'Disclaimer': 'Disclaimer/disclaimer.md'
extra_css: [css/extra.css]
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
extra:
homepage: https://depts.washington.edu/saswe/rat/
rat_version:
major: 3
minor: 0