forked from bitwalker/distillery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
73 lines (73 loc) · 2.8 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
site_name: Distillery Documentation
docs_dir: 'docs'
site_dir: 'doc'
theme: 'material'
use_directory_urls: false
markdown_extensions:
- markdown.extensions.toc:
permalink: true
- markdown.extensions.admonition
- markdown.extensions.smarty
- markdown.extensions.wikilinks
- markdown.extensions.codehilite:
linenums: true
- pymdownx.caret
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra:
palette:
primary: '#087da1'
accent: '#00a889'
font:
text: 'Source Sans Pro'
social:
- type: 'github'
link: 'https://github.com/bitwalker/distillery'
repo_name: 'bitwalker/distillery'
repo_url: 'https://github.com/bitwalker/distillery'
copyright: 'Copyright 2018 Paul Schoenfelder'
nav:
- Home: 'home.md'
- Installation: 'introduction/installation.md'
- 'Upgrading to 2.x': 'upgrading_to_2_0.md'
- 'Getting Started':
- 'Command Line Interface': 'tooling/cli.md'
- 'Understanding Releases': 'introduction/understanding_releases.md'
- 'Compare To Other Tools': 'introduction/comparison.md'
- 'Walkthrough': 'introduction/walkthrough.md'
- 'Umbrella Projects': 'introduction/umbrella_projects.md'
- 'Terminology': 'introduction/terminology.md'
- Guides:
- 'Phoenix': 'guides/phoenix_walkthrough.md'
- 'Building Releases In Docker': 'guides/building_in_docker.md'
- 'Deploying To Digital Ocean': 'guides/deploying_to_digital_ocean.md'
- 'Deploying To GCP': 'guides/deploying_to_google_cloud_platform.md'
- 'Deploying To AWS': 'guides/deploying_to_aws.md'
- 'Deploying With Docker': 'guides/working_with_docker.md'
- 'Upgrades and Downgrades': 'guides/upgrades_and_downgrades.md'
- 'Appups': 'guides/appups.md'
- 'Migrations': 'guides/running_migrations.md'
- 'systemd': 'guides/systemd.md'
- Configuration:
- 'Configuring Distillery': 'config/distillery.md'
- 'Runtime Configuration': 'config/runtime.md'
- 'VM Args': 'config/vm.args.md'
- 'PID Files': 'config/pidfiles.md'
- Extensibility:
- 'Release Plugins': 'extensibility/release_plugins.md'
- 'Config Providers': 'extensibility/config_providers.md'
- 'Custom Commands': 'extensibility/custom_commands.md'
- 'Overlays': 'extensibility/overlays.md'
- 'Boot Hooks': 'extensibility/boot_hooks.md'
- 'Shell Scripts': 'extensibility/shell_scripts.md'
- 'Appup Transforms': 'extensibility/appup_transforms.md'
- 'Module Documentation': 'api-reference.html'
- Changelog: 'changelog.md'
- FAQ: 'faq.md'