-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
70 lines (61 loc) · 1.81 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
site_name: Tsuru Docs
site_url: https://tsuru.github.com/docs
site_author: Tsuru
repo_url: https://github.com/tsuru/docs.git
repo_name: tsuru/docs
theme:
name: material
favicon: ./static/favicon.ico
logo: ./static/logo.svg
palette:
primary: black
features:
- content.code.copy
- content.code.select
- navigation.instant
- navigation.tracking
- navigation.tabs
- toc.follow
markdown_extensions:
- admonition
- attr_list
- footnotes
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight
- pymdownx.snippets:
base_path:
- src/
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
docs_dir: src
nav:
- Getting started:
- Overview: ./getting_started/overview.md
- Architecture: ./getting_started/architecture.md
- "Install on minikube": ./getting_started/install_minikube.md
- "Install on GKE": ./getting_started/install_gke.md
- User guides:
- Install client: ./user_guides/install_client.md
- App deploy:
- Using Dockerfile: ./user_guides/deploy_using_dockerfile.md
- GO apps: ./user_guides/deploy_go_apps.md
- Python apps: ./user_guides/deploy_python_apps.md
- Node.js apps: ./user_guides/deploy_nodejs_apps.md
- React.js apps: ./user_guides/deploy_react_apps.md
- Admin guides:
- Managing clusters: ./admin_guides/managing_clusters.md
- Managing pools: ./admin_guides/managing_pools.md
- Managing platforms: ./admin_guides/managing_platforms.md
- Managing roles: ./admin_guides/managing_roles.md
- Managing teams: ./admin_guides/managing_teams.md
- References:
- 404.md
- Contributing:
- Development environment:
- Running development enviroment with Docker Compose: ./contributing/docker-compose.md