-
Notifications
You must be signed in to change notification settings - Fork 24
/
mkdocs.yml
68 lines (66 loc) · 2.2 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
site_name: Bootleg Documentation
docs_dir: 'docs'
site_dir: 'doc'
theme:
name: 'material'
logo: 'images/labzero.svg'
font:
text: 'Source Sans Pro'
feature:
tabs: true
use_directory_urls: false
markdown_extensions:
- markdown.extensions.toc:
permalink: true
- markdown.extensions.admonition
- markdown.extensions.footnotes
- markdown.extensions.smarty:
smart_quotes: false
- markdown.extensions.wikilinks
- markdown.extensions.codehilite:
linenums: true
- pymdownx.caret
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark:
smart_mark: true
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra:
social:
- type: 'github'
link: 'https://github.com/labzero/bootleg'
repo_name: 'labzero/bootleg'
repo_url: 'https://github.com/labzero/bootleg'
nav:
- Home: 'home.md'
- 'Supported Scenarios': 'scenarios.md'
- Installation: 'installing.md'
- Configuration:
- Environments: 'config/environments.md'
- 'Build strategies': 'config/build.md'
- 'Deployment strategies': 'config/deploy.md'
- 'Setting options': 'config/setting_options.md'
- 'Defining roles and hosts': 'config/roles.md'
- 'Using tasks and hooks': 'config/tasks.md'
- Reference:
- 'Available Options': 'reference/options.md'
- 'Role and Host Options': 'reference/role_host_options.md'
- 'Workflows': 'reference/workflow.md'
- 'Phoenix Support': 'reference/phoenix.md'
- 'Public Key Support': 'reference/public_keys.md'
- 'Built-in Macros': 'reference/macros.md'
- 'Working with Docker': 'reference/docker.md'
- 'Mix Tasks': 'reference/mix.md'
- 'Bootleg Task Providers': 'reference/task_providers.md'
- 'Continuous Integration': 'reference/ci.md'
- 'Customization': 'reference/customization.md'
- 'More Resources': 'resources.md'
- 'API Reference': 'api-reference.html'
copyright: |
Copyright 2018 <a href="http://www.labzero.com">Lab Zero Innovations</a>
extra_css: [stylesheets/bootleg.css]