This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
131 lines (125 loc) · 4.43 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: ''
site_url: https://www.chutney-testing.com/
site_description: Opinionated test tool for Specification by Example
site_author: Chutney Testing Team
repo_name:
repo_url: https://github.com/chutney-testing/chutney/
edit_uri: https://github.com/chutney-testing/chutney-testing.github.io/docs
copyright: © Chutney Testing 2017 | under the Apache License, Version 2.0
nav:
- Overview: index.md
- Getting Started:
- Requirements: getting_started/requirements.md
- Write your first scenario: getting_started/write.md
- Run your scenario: getting_started/run.md
- Installation:
- Local Development: installation/local_dev.md
- On premise:
- Introduction: installation/on_premise/index.md
- Minimal configuration: installation/on_premise/minimal_conf.md
- Further details: installation/on_premise/details.md
- Advance topics: installation/advance_topics.md
- CI/CD integration:
- synchronize: installation/ci_cd/scenario_sync.md
- Documentation:
- Write a scenario: documentation/write.md
- Actions:
- documentation/actions/index.md
- AMQP: documentation/actions/amqp.md
- Groovy: documentation/actions/groovy.md
- HTTP: documentation/actions/http.md
- JMS: documentation/actions/jms.md
- Kafka: documentation/actions/kafka.md
- MongoDB: documentation/actions/mongo.md
- Radius: documentation/actions/radius.md
- Selenium: documentation/actions/selenium.md
- SOAP: documentation/actions/soap.md
- SQL: documentation/actions/sql.md
- SCP / FTP / SSH: documentation/actions/ssh.md
- Assertions: documentation/actions/assertions.md
- Micrometer: documentation/actions/micrometer.md
- Other: documentation/actions/other.md
- Extension: documentation/actions/extension.md
- Functions:
- Classpath: documentation/functions/classpath.md
- Dates & Time: documentation/functions/datetime.md
- Escape: documentation/functions/escape.md
- Handling null: documentation/functions/nullable.md
- JSON: documentation/functions/json.md
- Micrometer: documentation/functions/micrometer.md
- Network: documentation/functions/network.md
- Random values: documentation/functions/generate.md
- SOAP: documentation/functions/soap.md
- String: documentation/functions/string.md
- Wiremock: documentation/functions/wiremock.md
- XPath: documentation/functions/xpath.md
- Extension: documentation/functions/extension.md
# - Toolbox: toolbox.md # hidden page
extra_css:
- stylesheets/extra.css
theme:
name: material
favicon: img/favicon.ico
logo: img/logo.svg
language: en
font:
text: Ubuntu
#text: Montserrat
code: Source Code Pro
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch
# icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch-off-outline
# icon: material/weather-sunny
name: Switch to light mode
features:
- content.code.annotate
- content.tabs.link
- navigation.tracking
- navigation.tabs
- navigation.expand
- navigation.indexes
# - header.autohide
# Material theme specific
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/chutney-testing
markdown_extensions:
- toc:
permalink: "🔗"
baselevel: 2
toc_depth: 3
- footnotes
- admonition
- pymdownx.highlight:
linenums: true
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
plugins:
- search
- git-revision-date-localized
- redirects:
redirect_maps:
'install.md': 'index.md' # to be removed after fixing in chutney