-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathzensical.toml
More file actions
65 lines (61 loc) · 1.99 KB
/
Copy pathzensical.toml
File metadata and controls
65 lines (61 loc) · 1.99 KB
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
[project]
site_name = "Python libterraform"
site_description = "Python binding for Terraform."
site_url = "https://prodesire.github.io/py-libterraform/"
repo_url = "https://github.com/Prodesire/py-libterraform"
repo_name = "Prodesire/py-libterraform"
edit_uri = "edit/main/docs/en/"
docs_dir = "docs/en"
site_dir = "site"
extra_javascript = ["assets/language-redirect.js"]
nav = [
{ "Home" = "index.md" },
{ "Getting Started" = [
{ "Installation" = "installation.md" },
{ "Quick Start" = "quickstart.md" },
{ "Parallel Execution" = "parallel-execution.md" },
{ "Plan Results and Streaming" = "structured-and-streaming.md" },
] },
{ "Choosing an Integration" = "alternatives.md" },
{ "API Reference" = [
{ "Overview" = "api/index.md" },
{ "TerraformCommand" = "api/terraform-command.md" },
{ "AsyncTerraformCommand" = "api/async-terraform-command.md" },
{ "TerraformPool" = "api/terraform-pool.md" },
{ "TerraformConfig" = "api/terraform-config.md" },
{ "Results & Streaming" = "api/results.md" },
{ "Exceptions" = "api/exceptions.md" },
] },
{ "Development" = [
{ "Development Guide" = "development.md" },
{ "Release Policy" = "release-policy.md" },
] },
]
[project.theme]
language = "en"
logo = "assets/py-libterraform-logo.png"
favicon = "assets/py-libterraform-favicon.png"
features = [
"navigation.sections",
"navigation.indexes",
"navigation.top",
"search.highlight",
"search.suggest",
"content.code.copy",
"content.action.edit",
]
[project.plugins.mkdocstrings.handlers.python]
paths = ["src"]
[project.plugins.mkdocstrings.handlers.python.options]
docstring_style = "sphinx"
filters = ["!^_"]
members_order = "source"
separate_signature = true
show_root_heading = true
show_signature_annotations = true
show_source = false
[project.extra]
alternate = [
{ name = "English", link = "https://prodesire.github.io/py-libterraform/", lang = "en" },
{ name = "中文", link = "https://prodesire.github.io/py-libterraform/zh/?lang=zh", lang = "zh" },
]