freemium-survey-components 2.0.484 → 2.0.486
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/adrs/.gitkeep +0 -0
- package/catalog-info.yaml +35 -0
- package/docs/adrs/index.md +21 -0
- package/docs/architecture/code-structure.md +118 -0
- package/docs/architecture/deep-dive.md +401 -0
- package/docs/getting-started.md +110 -0
- package/docs/index.md +57 -0
- package/docs/operations/alerts-configuration.md +19 -0
- package/docs/operations/how-to-debug.md +73 -0
- package/docs/operations/monitoring.md +26 -0
- package/docs/operations/recent-issues.md +22 -0
- package/docs/operations/sop.md +44 -0
- package/docs/operations/support.md +39 -0
- package/lib/bundle.css +1 -1
- package/lib/index.cjs.js +1 -1
- package/lib/index.esm.js +1 -1
- package/mkdocs.yml +38 -0
- package/package.json +1 -1
package/mkdocs.yml
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
site_name: 'Freemium Survey Components'
|
|
2
|
+
site_description: 'Functionality and Architecture Documentation for Freemium Survey Components'
|
|
3
|
+
|
|
4
|
+
nav:
|
|
5
|
+
- Home: index.md
|
|
6
|
+
- Getting Started: getting-started.md
|
|
7
|
+
- Architecture:
|
|
8
|
+
- Code Structure: architecture/code-structure.md
|
|
9
|
+
- Deep Dive: architecture/deep-dive.md
|
|
10
|
+
- Operations:
|
|
11
|
+
- Monitoring:
|
|
12
|
+
- Overview: operations/monitoring.md
|
|
13
|
+
- Alerts configuration: operations/alerts-configuration.md
|
|
14
|
+
- SOP: operations/sop.md
|
|
15
|
+
- Support:
|
|
16
|
+
- Overview: operations/support.md
|
|
17
|
+
- How to Debug: operations/how-to-debug.md
|
|
18
|
+
- Recent Issues: operations/recent-issues.md
|
|
19
|
+
- ADRs:
|
|
20
|
+
- Overview: adrs/index.md
|
|
21
|
+
|
|
22
|
+
plugins:
|
|
23
|
+
- techdocs-core
|
|
24
|
+
- mermaid2
|
|
25
|
+
|
|
26
|
+
markdown_extensions:
|
|
27
|
+
- admonition
|
|
28
|
+
- pymdownx.details
|
|
29
|
+
- pymdownx.superfences:
|
|
30
|
+
custom_fences:
|
|
31
|
+
- name: mermaid
|
|
32
|
+
class: mermaid
|
|
33
|
+
format: !!python/name:pymdownx.superfences.fence_code_format
|
|
34
|
+
- toc:
|
|
35
|
+
permalink: true
|
|
36
|
+
|
|
37
|
+
extra:
|
|
38
|
+
version: v1alpha1
|