-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathmkdocs.yml
More file actions
252 lines (244 loc) · 8.34 KB
/
Copy pathmkdocs.yml
File metadata and controls
252 lines (244 loc) · 8.34 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
site_name: SynoCommunity Documentation
site_description: Documentation for building and contributing Synology NAS packages with SynoCommunity
site_url: https://docs.synocommunity.com/
repo_url: https://github.com/SynoCommunity/spksrc
repo_name: SynoCommunity/spksrc
edit_uri: edit/master/docs/
copyright: Copyright © 2012 - 2026 SynoCommunity
theme:
name: material
favicon: assets/favicon.ico
logo: assets/synocommunity.svg
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- navigation.indexes
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
- content.tabs.link
palette:
- scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Helvetica Neue, Arial, sans-serif
code: Roboto Mono
extra_css:
- stylesheets/custom.css
exclude_docs: |
packages/_template.md
plugins:
- search
- tags
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: SynoCommunity
repo: spksrc
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra:
homepage: https://synocommunity.com
social:
- icon: fontawesome/brands/github
link: https://github.com/SynoCommunity/spksrc
- icon: fontawesome/brands/discord
link: https://discord.gg/nnN9fgE7EF
generator: false
nav:
- Home: index.md
- User Guide:
- user-guide/index.md
- Installation: user-guide/installation.md
- SSH Access: user-guide/ssh.md
- Troubleshooting: user-guide/troubleshooting.md
- Compatibility: user-guide/compatibility.md
- Permissions: user-guide/permissions.md
- Developer Guide:
- developer-guide/index.md
- Setup:
- developer-guide/setup/index.md
- Docker: developer-guide/setup/docker.md
- Virtual Machine: developer-guide/setup/vm.md
- LXC Container: developer-guide/setup/lxc.md
- Basics:
- developer-guide/basics/index.md
- Your First Package: developer-guide/basics/first-package.md
- Package Anatomy: developer-guide/basics/package-anatomy.md
- Build Workflow: developer-guide/basics/build-workflow.md
- Packaging:
- developer-guide/packaging/index.md
- Makefile Variables: developer-guide/packaging/makefile-variables.md
- Build Rules: developer-guide/packaging/build-rules.md
- Patches: developer-guide/packaging/patches.md
- PLIST Files: developer-guide/packaging/plist.md
- Service Scripts: developer-guide/packaging/service-scripts.md
- Wizards: developer-guide/packaging/wizards.md
- Help Pages: developer-guide/packaging/help-pages.md
- Resource Files: developer-guide/packaging/resource-files.md
- Package Types:
- developer-guide/package-types/index.md
- Python Packages: developer-guide/package-types/python.md
- Go Packages: developer-guide/package-types/go.md
- Rust Packages: developer-guide/package-types/rust.md
- Web Applications: developer-guide/package-types/web.md
- Advanced:
- developer-guide/advanced/index.md
- Cross-Compilation: developer-guide/advanced/cross-compilation.md
- Debugging: developer-guide/advanced/debugging.md
- Testing: developer-guide/advanced/testing.md
- Ash Shell PID Issue: developer-guide/advanced/ash-pid-issue.md
- Migration:
- developer-guide/migration/index.md
- DSM 7 Migration: developer-guide/migration/dsm7.md
- DSM 7.2 Features: developer-guide/migration/dsm72.md
- Publishing:
- developer-guide/publishing/index.md
- GitHub Actions: developer-guide/publishing/github-actions.md
- Manual Publishing: developer-guide/publishing/manual-publishing.md
- Repository Activation: developer-guide/publishing/repository-activation.md
- Package Server: developer-guide/publishing/package-server.md
- Update Policy: developer-guide/publishing/update-policy.md
- Framework:
- framework/index.md
- Architecture: framework/architecture.md
- Makefile System: framework/makefile-system.md
- Toolchain: framework/toolchain.md
- Toolkit: framework/toolkit.md
- Changes: framework/changes.md
- Reference:
- reference/index.md
- Architectures: reference/architectures.md
- Model ↔ Architecture: reference/model-architecture.md
- System Ports: reference/system-ports.md
- Package Ports: reference/package-ports.md
- Macros: reference/macros.md
- Makefile Reference: reference/makefile-reference.md
- Permissions: reference/permissions.md
- DSM APIs: reference/dsm-apis.md
- Packages:
- packages/index.md
- Automation:
- Salt: packages/salt.md
- Backup:
- BorgBackup: packages/borgbackup.md
- Borgmatic: packages/borgmatic.md
- Duplicity: packages/duplicity.md
- Rclone: packages/rclone.md
- CLI:
- Mosh: packages/mosh.md
- SynoCli Devel: packages/synocli-devel.md
- SynoCli Disk: packages/synocli-disk.md
- SynoCli File: packages/synocli-file.md
- SynoCli Kernel: packages/synocli-kernel.md
- SynoCli Misc: packages/synocli-misc.md
- SynoCli Monitor: packages/synocli-monitor.md
- SynoCli Net: packages/synocli-net.md
- SynoCli VideoDriver: packages/synocli-videodriver.md
- Development:
- Git: packages/git.md
- PostgreSQL: packages/postgresql.md
- Downloads:
- Aria2: packages/aria2.md
- Deluge: packages/deluge.md
- ruTorrent: packages/rutorrent.md
- Transmission: packages/transmission.md
- Home Automation:
- Home Assistant: packages/homeassistant.md
- Mosquitto: packages/mosquitto.md
- Kernel:
- SynoKernel USB Serial: packages/synokernel-usbserial.md
- Media:
- Beets: packages/beets.md
- Comskip: packages/comskip.md
- FFmpeg: packages/ffmpeg.md
- ImageMagick: packages/imagemagick.md
- Media Management:
- Flexget: packages/flexget.md
- Radarr/Sonarr: packages/radarr-sonarr.md
- Media Server:
- Immich: packages/immich.md
- Jellyfin: packages/jellyfin.md
- Kiwix: packages/kiwix.md
- Loom: packages/loom.md
- Navidrome: packages/navidrome.md
- Monitoring:
- Icinga: packages/icinga.md
- Netdata: packages/netdata.md
- Node Exporter: packages/node-exporter.md
- Network:
- AdGuard Home: packages/adguardhome.md
- Cloudflared: packages/cloudflared.md
- DNSCrypt Proxy: packages/dnscrypt-proxy.md
- Runtime:
- Mono: packages/mono.md
- Security:
- Google Authenticator: packages/google-authenticator.md
- Vaultwarden: packages/vaultwarden.md
- Storage:
- MinIO: packages/minio.md
- Sync:
- Syncthing: packages/syncthing.md
- Utilities:
- DSM Utilities: packages/dsm-utilities.md
- Web Apps:
- Adminer: packages/adminer.md
- BicBucStriim: packages/bicbucstriim.md
- File Browser: packages/file-browser.md
- Mozilla Sync: packages/mozilla-sync.md
- OpenList: packages/openlist.md
- ownCloud: packages/owncloud.md
- Archived:
- SickBeard Custom: packages/sickbeard-custom.md
- Contributing:
- contributing/index.md
- Development Process: contributing/development-process.md
- Pull Requests: contributing/pull-requests.md
- Package Lifecycle Policy: contributing/package-lifecycle.md