-
Notifications
You must be signed in to change notification settings - Fork 23
/
mkdocs.yml
144 lines (135 loc) · 4.56 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
132
133
134
135
136
137
138
139
140
141
142
143
144
# General Settings
site_name: Software Development Kit
site_url: https://boschrexroth.github.io/ctrlx-automation-sdk
site_description: ctrlX AUTOMATION Software Development Kit
site_author: Bosch Rexroth AG
copyright: Copyright © 2020-2023 Bosch Rexroth AG
# Repository Settings
repo_name: boschrexroth/ctrlx-automation-sdk
edit_uri: edit/master/doc/
repo_url: https://github.com/boschrexroth/ctrlx-automation-sdk
remote_branch: gh-pages
docs_dir: doc
site_dir: site
use_directory_urls: false
# Theming and style
theme:
name: material
custom_dir: doc
features:
- navigation.instant
- navigation.tabs
- navigation.sections
- content.code.copy
favicon: assets/favicon.png
icon:
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/squirrel-16
success: octicons/check-16
question: octicons/question-16
warning: octicons/alert-16
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: rexroth-light
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
extra_css:
- stylesheets/sdk.css
# Plugins
plugins:
- search
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/boschrexroth
- icon: fontawesome/brands/twitter
link: https://twitter.com/boschrexroth
markdown_extensions:
- admonition
- attr_list
- codehilite
- meta
- toc:
permalink: true
- pymdownx.tabbed
- pymdownx.superfences
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- attr_list
- pymdownx.highlight:
linenums_style: pymdownx.inline
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.details
# Content
nav:
- Home: index.md
- Getting Started:
- Overview : overview.md
- ctrlX AUTOMATION: ctrlx_automation.md
- Guidelines:
- Package Assets: package-assets.md
- App Developer Guideline: appdevguide.md
- Persisting Configurations: persistdata.md
- Persisting Device Settings: persist-device-settings.md
- License Management: licensing.md
- Service-to-Service Authentication: s2sauth.md
- Using Flatbuffers in IEC 61131-3 Code: fbs2plc.md
- Configure maximal Number of Open File Handles: numopenfilehandles.md
- Using Localization: localizaction.md
- External Storages:
- Date exchange: data-exchange.md
- Storage extension: storage-extension.md
- Extendable Denylist: extenable-denylist.md
- Releases:
- Changelog: changelog.md
- Setup:
- Setup Overview: setup_overview.md
- Quick Start Guide: quick-start-guide.md
- ctrlX WORKS App Build Environment: setup_qemu_ctrlx_works.md
- Important Installation Scripts: install-scripts.md
- QEMU Virtual Machine: setup_qemu_ubuntu.md
- VirtualBox Virtual Machine: setup_windows_virtualbox_ubuntu.md
- Native Ubuntu: setup_ubuntu.md
- Install Sources from github: install-sources-from-github.md
- Toolchain:
- Px.exe as Proxy on a Windows Host: px.md
- Connecting QEMU VMs and ctrlX CORE: connecting_qemu_vm_ctrlx.md
- Working with App Build Environments (QEMU VMs): working-with-app-builder-envs.md
- SSH Connection: ssh_connection.md
- Visual Studio Code: vscode.md
- .NET: dotnet.md
- Using Snapcraft Remote Build from Canonical: remote-build.md
- Samples:
- Overview: samples.md
- Samples C/C++: samples-cpp/README.md
- Samples Go: samples-go/README.md
- Samples Python: samples-python/README.md
- Samples .NET: samples-net/README.md
- Samples Nodejs: samples-node/README.md
- Samples Snap: samples-snap/README.md
- Samples IEC 61131-3: samples-iec61131/README.md
- Debugging:
- Debugging Overview: debug-overview.md
- Remote Debugging C++: remote-debug-cpp.md
- Remote Debugging Python: remote-debug-python.md
- References:
- Overview: references.md
- Api Reference:
- c#: https://apps.boschrexroth.com/docs/ctrlx/csharp/html/index.html
- python: https://apps.boschrexroth.com/docs/ctrlx/python/html/index.html
- About: about.md