-
Notifications
You must be signed in to change notification settings - Fork 18
/
mkdocs.yml
58 lines (53 loc) · 1.42 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
# Project information
site_name: 'GitOps CLI'
site_description: 'A command line interface to perform operations on GitOps managed infrastructure repositories.'
site_url: 'https://baloise.github.io/gitopscli/'
# Repository
repo_name: 'baloise/gitopscli'
repo_url: 'https://github.com/baloise/gitopscli'
# Navigation
nav:
- Home: index.md
- Setup: setup.md
- Getting started: getting-started.md
- CLI Commands:
- add-pr-comment: commands/add-pr-comment.md
- create-preview: commands/create-preview.md
- create-pr-preview: commands/create-pr-preview.md
- delete-preview: commands/delete-preview.md
- delete-pr-preview: commands/delete-pr-preview.md
- deploy: commands/deploy.md
- sync-apps: commands/sync-apps.md
- version: commands/version.md
- Changelog: changelog.md
- Contributing: contributing.md
- License: license.md
# Configuration
theme:
name: 'material'
language: 'en'
palette:
primary: 'indigo'
accent: 'indigo'
font:
text: 'Roboto'
code: 'Roboto Mono'
feature:
tabs: true
logo: 'assets/images/logo-white.svg'
favicon: 'assets/images/favicon.ico'
# Custom CSS
extra_css:
- 'stylesheets/extra.css'
# Extensions
markdown_extensions:
- markdown.extensions.attr_list
- pymdownx.superfences
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
- pymdownx.emoji
- markdown_include.include:
base_path: docs/includes