-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
119 lines (111 loc) · 3.11 KB
/
mkdocs.yml
File metadata and controls
119 lines (111 loc) · 3.11 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
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
site_name: SyncEngine Documentation
site_description: Comprehensive user and developer documentation for SyncEngine — the modular automation and integration platform.
site_author: SyncEngine Team
copyright: "© 2026 SyncEngine. All rights reserved."
theme:
name: material
language: en
logo: img/icon-fill.svg
favicon: img/favicon.ico
features:
- navigation.expand
- navigation.top
- navigation.instant
- search.suggest
- search.highlight
- toc.integrate
- content.action.edit
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: blue
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: cyan
toggle:
icon: material/weather-sunny
name: Switch to light mode
nav:
- Home: index.md
- User Docs:
- Installation: user/installation.md
- Setup: user/setup.md
- Dashboard: user/dashboard.md
- Tasks: user/tasks.md
- Connections: user/connections.md
- Automations: user/automations.md
- Flows: user/flows.md
- Routines: user/routines.md
- Storages: user/storages.md
- Best Practices: user/best-practices.md
- FAQ: user/faq.md
- Task Docs:
- Attempt: tasks/attempt.md
- Cache: tasks/cache.md
- Choose: tasks/choose.md
- Extract: tasks/extract.md
- Filter: tasks/filter.md
- Group: tasks/group.md
- Index: tasks/index.md
- Loop: tasks/loop.md
- Map: tasks/map.md
- Merge: tasks/merge.md
- Replace: tasks/replace.md
- Retrieve: tasks/retrieve.md
- Send: tasks/send.md
- Set: tasks/set.md
- Sort: tasks/sort.md
- Split: tasks/split.md
- Store: tasks/store.md
- Template: tasks/template.md
- Trace: tasks/trace.md
- Trigger: tasks/trigger.md
- Wait: tasks/wait.md
- Webservice Docs:
- HTTP: webservices/http.md
- HTTP Basic Auth: webservices/http-basic.md
- HTTP Bearer Token: webservices/http-bearer-token.md
- HTTP Multistep: webservices/http-multistep.md
- Local Filesystem: webservices/local-filesystem.md
- FTP: webservices/ftp.md
- SFTP: webservices/sftp.md
- SOAP: webservices/soap.md
- SOAP Multistep: webservices/soap-multistep.md
- SQL: webservices/sql.md
- Developer Docs:
- Modules: developer/modules.md
- API: developer/api.md
- Architecture: developer/architecture.md
markdown_extensions:
- admonition
- codehilite
- footnotes
- meta
- toc:
permalink: true
- tables
- pymdownx.details
- pymdownx.superfences
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_png
- pymdownx.tasklist:
custom_checkbox: true
plugins:
- search
- awesome-pages
- minify:
minify_html: true
extra:
generator: false
extra_css:
- css/custom.css
extra_javascript:
- js/custom.js
repo_url: https://github.com/SyncEngine/SyncEngine-docs
repo_name: SyncEngine/SyncEngine-docs
edit_uri: edit/main/docs/