forked from quixio/quix-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
454 lines (439 loc) · 24.2 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
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
site_name: 'Documentation'
site_description: 'Quix Developer Documentation. Includes documentation (guides, tutorials, references) for Quix Cloud, Quix Streams client library, and REST and websocket APIs.'
site_author: 'Quix.io'
site_url: 'https://quix.io/docs'
copyright: >
Copyright © 2020 - 2024 Quix Analytics, Ltd. –
<a href="#__consent">Change cookie settings</a>
docs_dir: docs/
repo_name: quixio/quix-docs
repo_url: https://github.com/quixio/quix-docs
edit_uri: tree/dev/docs
nav:
- 'Get started':
- 'Welcome': 'get-started/welcome.md'
- 'Installation':
- 'Use command line': 'get-started/install.md'
- 'Core concepts':
- 'get-started/streaming.md'
- 'get-started/stream-processing.md'
- 'get-started/stream-processing-pipelines.md'
- 'Quickstart':
- 'Produce data': 'get-started/produce.md'
- 'Consume data': 'get-started/consume.md'
- 'Process data': 'get-started/process.md'
# Mostly out of date
# - 'Project templates': 'get-started/project-templates.md'
- 'Quix Streams': '!import https://github.com/quixio/quix-streams?branch=main'
- 'Quix CLI (Beta)':
- 'Overview': 'cli/overview.md'
- 'Quickstart': 'cli/cli-quickstart.md'
- 'Reference guide': 'cli/cli-reference.md'
- 'Tutorials':
- 'Build a pipeline':
- 'Overview': 'cli/cli-build-pipeline.md'
- 'Create a project': 'cli/cli-create-project.md'
- 'Sign up to Quix Cloud': 'cli/cli-cloud-signup.md'
- 'Add a source': 'cli/cli-add-source.md'
- 'Add a transform': 'cli/cli-add-transform.md'
- 'Add a destination': 'cli/cli-add-destination.md'
- 'Sync to Cloud': 'cli/cli-sync-to-cloud.md'
- 'Using the CLI with a template': 'cli/cli-template.md'
- 'Using the CLI with GitHub Actions': 'cli/cli-github-actions.md'
- 'Quix Cloud':
- 'Overview': 'quix-cloud/overview.md'
- 'Quickstart': 'quix-cloud/quickstart.md'
- 'Quix Tour':
- 'Overview': 'quix-cloud/quixtour/overview.md'
- '1. Ingest': 'quix-cloud/quixtour/external-source.md'
- '2. Process': 'quix-cloud/quixtour/process-threshold.md'
- '3. Serve': 'quix-cloud/quixtour/serve-sms.md'
- 'Build a pipeline':
- '1. Create your project':
- 'Overview': 'create/overview.md'
- 'Clone a project': 'create/clone-project.md'
- 'Fork a project': 'create/fork-project.md'
- 'Create a project': 'create/create-project.md'
- 'Create an environment': 'create/create-environment.md'
- 'Protected environments': 'create/protected-environment.md'
- 'Syncing an environment': 'create/syncing-environment.md'
- 'Project structure': 'create/project-structure.md'
- 'Create a topic': 'create/create-topic.md'
- '2. Develop an application':
- 'Overview': 'develop/overview.md'
- 'Create an application': 'develop/create-application.md'
- 'Authentication':
- 'Authenticating Quix Streams': 'develop/authentication/quix-streams.md'
- 'Personal Access Token (PAT)': 'develop/authentication/personal-access-token.md'
- 'Streaming Token': 'develop/authentication/streaming-token.md'
- 'Using Code Samples': 'develop/code-samples.md'
- 'Integrate your data':
- 'Overview': 'develop/integrate-data/overview.md'
- 'Ingest your data - source':
- 'Using a prebuilt source connector': 'develop/integrate-data/prebuilt-connector.md'
- 'Reading a CSV file': 'develop/integrate-data/read-csv.md'
- 'Polling a REST API': 'develop/integrate-data/polling.md'
- 'Handling inbound webhooks': 'develop/integrate-data/inbound-webhooks.md'
- 'Using an external source': 'develop/integrate-data/external-source.md'
- 'Using the Quix Streaming APIs': 'develop/integrate-data/streaming-apis.md'
- 'Using Quix Streams': 'develop/integrate-data/quix-streams.md'
- 'Posting data to a Quix web app': 'develop/integrate-data/web-app.md'
- 'Handling compressed data': 'develop/integrate-data/compressed-data.md'
- 'Handling IoT data with MessagePack': 'develop/integrate-data/iot-data.md'
- 'Publish your data - sink':
- 'Using a prebuilt destination connector': 'develop/integrate-data/prebuilt-connector-destination.md'
- 'Using an external destination': 'develop/integrate-data/external-destination.md'
- 'Exporting Quix data to Jupyter notebooks': 'develop/integrate-data/jupyter-nb.md'
- 'Process your data':
- 'Overview': 'develop/process/overview.md'
- 'Types of processing': 'develop/process/types-of-processing.md'
- 'Types of transform': 'develop/process/types-of-transform.md'
- 'Generating events': 'develop/process/timeseries-events.md'
- 'Using Quix Streaming APIs':
- 'Overview': 'develop/apis-overview.md'
- 'Streaming Writer API':
- 'Overview': 'apis/streaming-writer-api/overview.md'
- 'Setup': 'apis/streaming-writer-api/setup.md'
- 'HTTP requests': 'apis/streaming-writer-api/http-requests.md'
- 'Create a new Stream': 'apis/streaming-writer-api/create-stream.md'
- 'Add Stream metadata': 'apis/streaming-writer-api/stream-metadata.md'
- 'Send Parameter data': 'apis/streaming-writer-api/send-data.md'
- 'Send an Event': 'apis/streaming-writer-api/send-event.md'
- 'Streaming Reader API':
- 'Overview': 'apis/streaming-reader-api/overview.md'
- 'Setup': 'apis/streaming-reader-api/setup.md'
- 'Reading data': 'apis/streaming-reader-api/reading-data.md'
- 'Subscription and events': 'apis/streaming-reader-api/subscriptions.md'
- '3. Deploy a service':
- 'Overview': 'deploy/overview.md'
- 'Environment variables': 'deploy/environment-variables.md'
- 'Secrets management': 'deploy/secrets-management.md'
- 'YAML variables': 'deploy/yaml-variables.md'
- 'Configuring network ports': 'deploy/ports.md'
- 'State management': 'deploy/state-management.md'
- 'Deploy public services': 'deploy/deploy-public-page.md'
- '4. Manage your pipelines':
- 'Overview': 'manage/overview.md'
- 'Troubleshooting': 'manage/troubleshooting.md'
- 'Security': 'manage/security.md'
- 'MLOps': 'manage/MLOps.md'
- 'Using replay service': 'manage/replay.md'
- 'Testing using Quix data store': 'manage/testing-data-store.md'
- 'Testing multiple environments': 'manage/testing-environments.md'
- 'Query API':
- 'Overview': 'apis/query-api/overview.md'
- 'Setup': 'apis/query-api/setup.md'
- 'HTTP requests': 'apis/query-api/http-requests.md'
- 'Paged streams': 'apis/query-api/streams-paged.md'
- 'Filtered streams': 'apis/query-api/streams-filtered.md'
- 'Streams with models': 'apis/query-api/streams-models.md'
- 'Raw data': 'apis/query-api/raw-data.md'
- 'Aggregate data by time': 'apis/query-api/aggregate-time.md'
- 'Aggregate data by tags': 'apis/query-api/aggregate-tags.md'
- 'Tag filtering': 'apis/query-api/filter-tags.md'
- 'Portal API':
- 'Overview': 'apis/portal-api/overview.md'
- 'Setup': 'apis/portal-api/setup.md'
- 'HTTP requests': 'apis/portal-api/http-requests.md'
- 'Connectors':
- 'Index': 'connectors/index.md'
#ConnectorsGetInsertedHere
- 'Integrations':
- 'Overview': 'integrations/overview.md'
- 'Brokers':
- 'Overview': 'integrations/brokers/overview.md'
- 'Broker settings': 'integrations/brokers/broker-settings.md'
- 'Quix': 'integrations/brokers/quix.md'
- 'Confluent': 'integrations/brokers/confluent.md'
- 'Redpanda': 'integrations/brokers/redpanda.md'
- 'Aiven': 'integrations/brokers/aiven.md'
- 'Upstash': 'integrations/brokers/upstash.md'
- 'Databases':
- 'InfluxDB':
- 'Overview': 'integrations/databases/influxdb/overview.md'
- 'Quickstart': 'integrations/databases/influxdb/quickstart.md'
- 'Guides':
- 'Using Telegraf': 'integrations/databases/influxdb/telegraf.md'
- 'Replacing Flux': 'integrations/databases/influxdb/replacing-flux.md'
- 'Replacing Kapacitor': 'integrations/databases/influxdb/replacing-kapacitor.md'
- 'Alerting': 'integrations/databases/influxdb/alerting.md'
- 'Migrating from v2 to v3': 'integrations/databases/influxdb/migrating-v2-v3.md'
- 'Bring Your Own Cluster (BYOC)':
- 'Overview': 'byoc/overview.md'
- 'Requirements': 'byoc/requirements.md'
- 'Installation': 'byoc/installation.md'
- 'BYOC vs. Cloud': 'byoc/byoc-vs-cloud.md'
- 'Release filtering': 'byoc/release-filtering.md'
- 'Knowledge base':
- 'Guides':
- 'What is Quix?': 'kb/what-is-quix.md'
- 'Why stream processing?': 'kb/why-stream-processing.md'
- 'What is Kafka?': 'kb/what-is-kafka.md'
- 'Reference':
- 'Glossary': 'kb/glossary.md'
- 'Contribute': 'kb/contribute.md'
- 'Tutorials':
- 'Overview': 'tutorials/overview.md'
- 'Event detection and alerting featuring InfluxDB and PagerDuty':
- 'Overview': 'tutorials/influxdb-alerting/overview.md'
- '1. Write the Python client': 'tutorials/influxdb-alerting/python-client.md'
- '2. Add an external source': 'tutorials/influxdb-alerting/external-source.md'
- '3. Add InfluxDB destination': 'tutorials/influxdb-alerting/influxdb-destination.md'
- '4. Add threshold detection': 'tutorials/influxdb-alerting/threshold-detection.md'
- '5. Add PagerDuty alerting': 'tutorials/influxdb-alerting/add-alerting.md'
- '6. Summary': 'tutorials/influxdb-alerting/summary.md'
- 'Migrating InfluxDB v2 to v3':
- 'Overview': 'tutorials/influxdb-migration/overview.md'
- '1. Install InfluxDB v2': 'tutorials/influxdb-migration/influxdb-v2-install.md'
- '2. Create the project': 'tutorials/influxdb-migration/create-project.md'
- '3. Add InfluxDB v2 source': 'tutorials/influxdb-migration/influxdb-source.md'
- '4. Add InfluxDB v3 destination': 'tutorials/influxdb-migration/influxdb-destination.md'
- '5. Summary': 'tutorials/influxdb-migration/summary.md'
- 'Vector Store Embeddings': 'tutorials/ingest-embeddings/continuously_ingest_documents_into_a_vector_store_using_apache_kafka.md'
- 'Predictive maintenance':
- 'Overview': 'tutorials/predictive-maintenance/overview.md'
- '1. Get the project': 'tutorials/predictive-maintenance/get-project.md'
- '2. Data generator': 'tutorials/predictive-maintenance/data-generator.md'
- '3. Downsampling': 'tutorials/predictive-maintenance/downsampling.md'
- '4. Forecast': 'tutorials/predictive-maintenance/forecast-service.md'
- '5. Alerts': 'tutorials/predictive-maintenance/alert-service.md'
- '6. InfluxDB - raw data': 'tutorials/predictive-maintenance/influxdb-raw-data.md'
- '7. InfluxDB - alerts': 'tutorials/predictive-maintenance/influxdb-alerts.md'
# - '8. Printers dashboard': 'tutorials/predictive-maintenance/printers-dashboard.md'
# - '8. Lab: Add phone alerts': 'tutorials/predictive-maintenance/phone-alerts.md'
- '8. Summary': 'tutorials/predictive-maintenance/summary.md'
# - 'Clickstream analysis':
# - 'Overview': 'tutorials/clickstream/overview.md'
# - '1. Get the project': 'tutorials/clickstream/get-project.md'
# - '2. Clickstream producer': 'tutorials/clickstream/clickstream-producer.md'
# - '3. Data ingestion': 'tutorials/clickstream/data-ingestion.md'
# - '4. Data enrichment': 'tutorials/clickstream/data-enrichment.md'
# - '5. Data aggregation': 'tutorials/clickstream/data-aggregation.md'
# - '6. Event detection': 'tutorials/clickstream/event-detection.md'
# - '7. Webshop frontend': 'tutorials/clickstream/webshop-frontend.md'
# - '8. Real-time dashboard': 'tutorials/clickstream/realtime-dashboard.md'
# - '9. Lab: change offer': 'tutorials/clickstream/change-offer.md'
# - '10. Summary': 'tutorials/clickstream/summary.md'
# - 'Computer vision':
# - 'Overview': 'tutorials/computer-vision/overview.md'
# - '1. Get the project': tutorials/computer-vision/get-project.md
# - '2. TfL camera feed': tutorials/computer-vision/tfl-camera-feed.md
# - '3. Frame grabber': tutorials/computer-vision/tfl-frame-grabber.md
# - '4. Object detection': tutorials/computer-vision/object-detection.md
# - '5. Web UI': tutorials/computer-vision/web-ui.md
# - '6. Other services': tutorials/computer-vision/other-services.md
# - '7. Add service': tutorials/computer-vision/add-service.md
# - '8. Summary': tutorials/computer-vision/summary.md
# - 'Chat sentiment analysis':
# - 'Overview': 'tutorials/sentiment-analysis/overview.md'
# - '1. Get the project': tutorials/sentiment-analysis/get-project.md
# - '2. Try the UI': 'tutorials/sentiment-analysis/try-the-ui.md'
# - '3. UI service': 'tutorials/sentiment-analysis/ui-service.md'
# - '4. Sentiment analysis service': 'tutorials/sentiment-analysis/sentiment-analysis-service.md'
# - '5. Twitch service': 'tutorials/sentiment-analysis/twitch-service.md'
# - '6. Customize the UI': 'tutorials/sentiment-analysis/customize-the-ui.md'
# - '7. Summary': 'tutorials/sentiment-analysis/summary.md'
# - 'Real-time ML predictions':
# - 'Overview': 'tutorials/data-science/overview.md'
# - '1. Bicycle data': 'tutorials/data-science/1-bikedata.md'
# - '2. Weather data': 'tutorials/data-science/2-weatherdata.md'
# - '3. Data views': 'tutorials/data-science/3-data.md'
# - '4. Get training data': 'tutorials/data-science/4-train.md'
# - '5. Run the model': 'tutorials/data-science/5-run.md'
# - '6. Conclusion': 'tutorials/data-science/6-conclusion.md'
# - 'Real-time ML pipelines':
# - 'Overview': 'tutorials/train-and-deploy-ml/overview.md'
# - 'Create your data': 'tutorials/train-and-deploy-ml/create-data.md'
# - 'Import data into Jupyter': 'tutorials/train-and-deploy-ml/import-data.md'
# - 'Train your ML model': 'tutorials/train-and-deploy-ml/train-ml.md'
# - 'Deploy your ML model': 'tutorials/train-and-deploy-ml/deploy-ml.md'
# - 'Conclusion': 'tutorials/train-and-deploy-ml/conclusion.md'
# - 'Currency Alerting': 'tutorials/currency-alerting/currency-alerting.md'
#- 'MATLAB and Simulink': 'tutorials/matlab/matlab-and-simulink.md'
# These tutorials are commented out due to lack of updates / testing - warning has been added to overview
#- 'RSS Processing': 'tutorials/rss-tutorial/rss-processing-pipeline.md'
#- 'Data Stream Processing': 'tutorials/data-stream-processing/data-stream-processing.md'
#- 'Slack Alerting': 'tutorials/slack-alerting/slack-alerting.md'
# Pulling this one as apparently the app is no longer available in Google Store
#- 'Real-time event detection':
# - 'Overview': 'tutorials/event-detection/overview.md'
# - '1. Data acquisition': 'tutorials/event-detection/data-acquisition.md'
# - '2. Event detection': 'tutorials/event-detection/crash-detection.md'
# - '3. Demo UI': 'tutorials/event-detection/crash-detection-ui.md'
# - '4. Conclusion': 'tutorials/event-detection/conclusion.md'
# Exclude build scripts from v2.0+
exclude_docs: |
quix-streams/v2-0-latest/build/*
# Use custom hook to create redirects for 0.5 docs
hooks:
- hooks/redirect_0_5_urls.py
plugins:
- multirepo:
cleanup: true
- search:
separator: '[\s\-\.]'
- social:
cards_layout_dir: layouts
cards_layout: quix
- glightbox
- redirects:
redirect_maps:
'index.md': 'get-started/welcome.md'
'contribute.md': 'kb/contribute.md'
'platform/changes.md': 'get-started/welcome.md'
'platform/ingest-data.md': 'develop/overview.md'
'platform/quickstart.md': 'quix-cloud/quickstart.md'
'platform/what-is-quix.md': 'kb/what-is-quix.md'
'platform/glossary.md': 'kb/glossary.md'
'platform/quixtour/overview.md': 'quix-cloud/quixtour/overview.md'
'platform/tutorials/index.md': 'tutorials/overview.md'
'platform/tutorials/computer-vision/index.md': 'tutorials/computer-vision/overview.md'
'platform/tutorials/computer-vision/get-project.md': 'tutorials/computer-vision/get-project.md'
'platform/tutorials/computer-vision/tfl-camera-feed.md': 'tutorials/computer-vision/tfl-camera-feed.md'
'platform/tutorials/computer-vision/tfl-frame-grabber.md': 'tutorials/computer-vision/tfl-frame-grabber.md'
'platform/tutorials/computer-vision/object-detection.md': 'tutorials/computer-vision/object-detection.md'
'platform/tutorials/computer-vision/web-ui.md': 'tutorials/computer-vision/web-ui.md'
'platform/tutorials/computer-vision/other-services.md': 'tutorials/computer-vision/other-services.md'
'platform/tutorials/computer-vision/add-service.md': 'tutorials/computer-vision/add-service.md'
'platform/tutorials/computer-vision/summary.md': 'tutorials/computer-vision/summary.md'
'platform/tutorials/currency-alerting/currency-alerting.md': 'tutorials/currency-alerting/currency-alerting.md'
'platform/tutorials/data-science/index.md': 'tutorials/data-science/overview.md'
'platform/tutorials/data-stream-processing/data-stream-processing.md': 'tutorials/data-stream-processing/data-stream-processing.md'
'platform/tutorials/event-detection/index.md': 'tutorials/event-detection/overview.md'
'platform/tutorials/matlab/matlab-and-simulink.md': 'tutorials/matlab/matlab-and-simulink.md'
'platform/tutorials/nocode-sentiment/nocode-sentiment-analysis.md': 'tutorials/sentiment-analysis/overview.md'
'platform/tutorials/rss-tutorial/rss-processing-pipeline.md': 'tutorials/rss-tutorial/rss-processing-pipeline.md'
'platform/tutorials/sentiment-analysis/index.md': 'tutorials/sentiment-analysis/overview.md'
'platform/tutorials/sentiment-analysis/get-project.md': 'tutorials/sentiment-analysis/get-project.md'
'platform/tutorials/sentiment-analysis/try-the-ui.md': 'tutorials/sentiment-analysis/try-the-ui.md'
'platform/tutorials/sentiment-analysis/sentiment-analysis-service.md': 'tutorials/sentiment-analysis/sentiment-analysis-service.md'
'platform/tutorials/sentiment-analysis/twitch-service.md': 'tutorials/sentiment-analysis/twitch-service.md'
'platform/tutorials/sentiment-analysis/customize-the-ui.md': 'tutorials/sentiment-analysis/customize-the-ui.md'
'platform/tutorials/sentiment-analysis/summary.md': 'tutorials/sentiment-analysis/summary.md'
'platform/tutorials/slack-alerting/slack-alerting.md': 'tutorials/slack-alerting/slack-alerting.md'
'platform/tutorials/train-and-deploy-ml/index.md': 'tutorials/train-and-deploy-ml/overview.md'
'apis/streaming-writer-api/index.md': 'apis/streaming-writer-api/overview.md'
'apis/streaming-reader-api/index.md': 'apis/streaming-reader-api/overview.md'
'apis/portal-api/index.md': 'apis/portal-api/overview.md'
'apis/query-api/index.md': 'apis/query-api/overview.md'
'platform/connectors/index.md': 'connectors/index.md'
'platform/how-to/personal-access-token-pat.md': 'develop/authentication/personal-access-token.md'
'platform/how-to/replay.md': 'manage/replay.md'
'platform/how-to/create-project.md': 'create/create-project.md'
'client-library-intro.md': 'quix-streams/introduction.md'
'quix-streams/client-library-intro.md': 'quix-streams/introduction.md'
'quix-streams-intro.md': 'quix-streams/introduction.md'
'quix-streams/quix-streams-intro.md': 'quix-streams/introduction.md'
'integrations/influxdb/overview.md': 'integrations/databases/influxdb/overview.md'
'integrations/influxdb/quickstart.md': 'integrations/databases/influxdb/quickstart.md'
'integrations/influxdb/telegraf.md': 'integrations/databases/influxdb/telegraf.md'
'integrations/influxdb/replacing-flux.md': 'integrations/databases/influxdb/replacing-flux.md'
'platform/how-to/use-sdk-token.md': 'develop/authentication/streaming-token.md'
'get-started/quixtour/ingest-push.md': 'quix-cloud/quixtour/external-source.md'
'get-started/quickstart.md': 'quix-cloud/quickstart.md'
'get-started/quixtour/overview.md': 'quix-cloud/quixtour/overview.md'
'get-started/quixtour/external-source.md': 'quix-cloud/quixtour/external-source.md'
'get-started/quixtour/process-threshold.md': 'quix-cloud/quixtour/process-threshold.md'
'get-started/quixtour/serve-sms.md': 'quix-cloud/quixtour/serve-sms.md'
'get-started/what-is-quix.md': 'kb/what-is-quix.md'
'get-started/why-stream-processing.md': 'kb/why-stream-processing.md'
'get-started/what-is-kafka.md': 'kb/what-is-kafka.md'
'get-started/glossary.md': 'kb/glossary.md'
'get-started/contribute.md': 'kb/contribute.md'
'get-started/build-cli.md' : 'get-started/cli-quickstart.md'
'get-started/cli-quickstart.md' : 'cli/cli-quickstart.md'
theme:
name: 'material'
custom_dir: overrides
# features:
# TODO
#custom_dir: 'theme'
favicon: 'assets/favicon.ico'
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue grey
accent: blue
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: light blue
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- content.code.copy
- navigation.instant # Instant loading pages.
- navigation.sections # Render top sections as groups.
- navigation.top # Adds a "Back to top" that is shown when scrolling up.
- navigation.tracking # Updates the url with highlighted section anchor.
- navigation.indexes # Documents can be directly attached to sections
- search.highlight # Search will highlight the searched word(s) on the page.*
- search.share # Adds an option to share a search query link.*
- search.suggest # Search will suggest the likeliest completion for a word.*
- content.tabs.link
- content.code.annotate # code annotations
- content.action.view # view page source
icon:
logo: 'material/library'
repo: 'material/library'
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/quix.js
- javascripts/feedback.js
extra:
social:
- icon: 'fontawesome/brands/github'
link: 'https://github.com/quixio/quix-docs'
- icon: 'fontawesome/brands/slack'
link: 'https://quix.io/community'
- icon: 'fontawesome/brands/twitter'
link: 'https://twitter.com/quix_io'
- icon: 'fontawesome/brands/youtube'
link: 'https://www.youtube.com/channel/UCrijXvbQg67m9-le28c7rPA'
analytics:
provider: google-tag-manager
property: GTM-55L66N3
posthog:
host: https://eu.posthog.com
key: phc_UyQcafs2J7OUQEwJrmejeb0vCIdA9i9vYz66suPshix
hotjar:
id: 2437577
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
cookies:
analytics:
name: Google Analytics
checked: true
posthog: Posthog
#alternate:
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- footnotes
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.details:
- pymdownx.highlight:
anchor_linenums: true