forked from cloudblue/connect-eaas-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
89 lines (89 loc) · 2.96 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
site_name: Connect EaaS Core
site_url: https://github.com/cloudblue/connect-eaas-core
repo_name: cloudblue/connect-eaas-core
repo_url: https://github.com/cloudblue/connect-eaas-core
edit_uri: ""
copyright: Copyright © 2022 Ingram Micro. All Rights Reserved.
extra:
generator: false
extra_css:
- css/custom.css
theme:
name: "material"
logo: images/logo_full.png
favicon: images/favicon.ico
palette:
- scheme: "default"
media: "(prefers-color-scheme: light)"
toggle:
icon: "material/lightbulb"
name: "Switch to dark mode"
- scheme: "slate"
media: "(prefers-color-scheme: dark)"
primary: "blue"
toggle:
icon: "material/lightbulb-outline"
name: "Switch to light mode"
markdown_extensions:
- mkautodoc
- admonition
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.keys
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- attr_list
- toc:
toc_depth: 3
plugins:
- glightbox
- macros:
module_name: docs/macros
- search:
lang: en
nav:
- Home: index.md
- Introduction:
- Extension as a Service: intro/eaas.md
- Types of extensions: intro/types_of_extensions.md
- Anatomy of an extension: intro/anatomy_of_an_extension.md
- Tutorials:
- Quick start:
- Fulfillment Automation: tutorials/quickstart/fulfillment_automation.md
- Hub Integration: tutorials/quickstart/hub_integration.md
- Multi Account Installation: tutorials/quickstart/multi_account_installation.md
- Events Application:
- Overview: tutorials/eventsapp/overview.md
- Setup: tutorials/eventsapp/setup.md
- Develop: tutorials/eventsapp/develop.md
- Test: tutorials/eventsapp/test.md
- Web Application:
- Overview: tutorials/webapp/overview.md
- Setup: tutorials/webapp/setup.md
- REST API: tutorials/webapp/api.md
- Test API: tutorials/webapp/test_api.md
- UI: tutorials/webapp/ui.md
- Test UI: tutorials/webapp/test_ui.md
- Anvil Application:
- Overview: tutorials/anvilapp/overview.md
- Setup: tutorials/anvilapp/setup.md
- Develop: tutorials/anvilapp/develop.md
- Test: tutorials/anvilapp/test.md
- Developer guide:
- Basic concepts:
- Events and Tasks: dev_guide/basics_events_tasks.md
- Project structure: dev_guide/basics_project_structure.md
- Tools: dev_guide/tools.md
- UI Toolkit: dev_guide/ui_toolkit.md
- Async support: dev_guide/async.md
- Available events: events.md
- Migration guide: migration_guide.md
- API Reference:
- Bases: reference/bases.md
- Decorators: reference/decorators.md
- Dependency injection: reference/injection.md
- Responses: reference/responses.md
- Testing: reference/testing.md