-
Notifications
You must be signed in to change notification settings - Fork 12
/
mkdocs.yml
95 lines (90 loc) · 2.86 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
90
91
92
93
94
95
# Project
site_name: 'Sage Monorepo'
site_description: >-
A development environment for building robust apps faster.
# Repository
repo_url: https://github.com/Sage-Bionetworks/sage-monorepo
repo_name: sage-monorepo
# Navigation
nav:
- Home:
- Sage Monorepo: index.md
- What's new: news.md
- Contributing:
- Overview: contributions/overview.md
- Reporting a bug: contributions/bug-report.md
- Adding a feature: contributions/guidelines.md
- Getting Started:
- What is Angular Universal?: getting-started/what-is-angular.md
- What is a devcontainer?: getting-started/what-is-devcontainer.md
- What is Nx?: getting-started/what-is-nx.md
- Setup:
- Develop Locally: getting-started/local-dev.md
- Develop On a Remote Host: getting-started/remote-dev.md
- Tutorials:
- Angular:
- Create an Angular app: tutorials/angular/add-app.md
- Add an Angular API client: tutorials/angular/add-api-client.md
- Add an Angular component: tutorials/angular/add-component.md
- Add an Angular library: tutorials/angular/add-library.md
- Docker:
- Create a Docker-based project: tutorials/docker/new-project.md
- Java:
- Add a Java library: tutorials/java/add-library.md
- Add a Java REST API: tutorials/java/add-rest-api.md
- Python:
- Add a Python REST API: tutorials/python/add-rest-api.md
- R:
- Add an R project: tutorials/r/new-project.md
- Developers Guide:
- Developing on a remote host: developers-guide/developing-on-a-remote-host.md
- Creating a commit with multiple authors: developers-guide/creating-a-commit-with-multiple-authors.md
- Common Issues: developers-guide/faq.md
- Reference:
- Agora:
- API: reference/agora.md
- OpenChallenges:
- Microservices: reference/oc-microservices.md
- Schemas: reference/oc-schemas.md
- Schematic:
- API: reference/schematic.md
# Theme configuration
theme:
name: material
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: blue
toggle:
icon: material/toggle-switch
name: Switch to light mode
logo: images/sage.png
icon:
admonition:
note: octicons/tag-16
info: octicons/info-16
features:
- content.code.copy
- navigation.footer
- navigation.sections
- navigation.tabs
- search.highlight
- search.share
- search.suggest
- toc.follow
plugins:
- autorefs
- search
- termynal
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: true