-
Notifications
You must be signed in to change notification settings - Fork 16
/
mkdocs.yml
47 lines (47 loc) · 1.4 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
site_name: Tomo
theme:
name: readthedocs
custom_dir: custom_theme
extra_css:
- css/extra.css
extra_javascript:
- js/extra.js
markdown_extensions:
- mdx_truly_sane_lists
- smarty
- markdown_include.include:
base_path: docs/include
repo_url: https://github.com/mattbrictson/tomo/
edit_uri: edit/main/docs/
nav:
- Home: index.md
- Comparisons: comparisons.md
- Configuration: configuration.md
- Commands:
- init: commands/init.md
- setup: commands/setup.md
- deploy: commands/deploy.md
- run: commands/run.md
- tasks: commands/tasks.md
- Plugins:
- core: plugins/core.md
- bundler: plugins/bundler.md
- env: plugins/env.md
- git: plugins/git.md
- nodenv: plugins/nodenv.md
- puma: plugins/puma.md
- rails: plugins/rails.md
- rbenv: plugins/rbenv.md
- Tutorials:
- Deploying Rails From Scratch: tutorials/deploying-rails-from-scratch.md
- Writing Custom Tasks: tutorials/writing-custom-tasks.md
- Publishing a Plugin: tutorials/publishing-a-plugin.md
- API:
- "Tomo::Host": api/Host.md
- "Tomo::Logger": api/Logger.md
- "Tomo::Paths": api/Paths.md
- "Tomo::PluginDSL": api/PluginDSL.md
- "Tomo::Remote": api/Remote.md
- "Tomo::Result": api/Result.md
- "Tomo::TaskLibrary": api/TaskLibrary.md
- "Tomo::Testing::MockPluginTester": api/testing/MockPluginTester.md