-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
88 lines (82 loc) · 2.46 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
site_name: AppRun Docs
repo_url: https://github.com/apprunjs/apprun-docs
edit_uri: edit/master/docs/
theme:
name: material
icon:
repo: fontawesome/brands/github
favicon: assets/favicon.ico
logo: assets/logo.png
features:
- navigation.sections
copyright: Copyright © 2016 - 2024 Yiyi Sun
markdown_extensions:
- md_in_html
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
permalink: true
- admonition
- pymdownx.highlight
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.snippets:
base_path:
docs/_src
check_paths: true
extra_css:
- assets/vendor/codemirror/codemirror.css
extra_javascript:
- assets/vendor/codemirror/codemirror.js
- assets/vendor/codemirror/mode/javascript/javascript.js
- assets/vendor/codemirror/mode/xml/xml.js
- assets/vendor/codemirror/mode/jsx/jsx.js
- assets/apprun-play.js
- assets/apprun-code.js
extra:
analytics:
provider: google
property: UA-123786786-1
nav:
- Home: index.md
- Concepts:
- Architecture:
- Overview: architecture.md
- Event Pubsub: event-pubsub.md
- State Management: state-management.md
- Component: component.md
- Reactivity: reactivity.md
- Examples:
- Microservice wirh Dapr: architecture-ideas/dapr.md
- Serverless App Using Firebase: architecture-ideas/firebase-app.md
- Database and Websocket: architecture-ideas/db-websocket.md
- Webassembly app with Rust: architecture-ideas/rust-app.md
- State Machine: architecture-ideas/state-machine.md
- Showcase: showcase.md
- Getting started:
- Installation: installation.md
- Tutorial: tutorial.md
- Create AppRun App: create-apprun-app.md
- Single Page App: spa.md
- Advanced:
- JSX: view-patterns.md
- Directive: directive.md
- SVG: svg.md
- Use with React: react.md
- 3rd Party Intergration: 3rd-party-libs.md
- Dev Tools: cli-in-console.md
- Strong Typing: strong-typing.md
- Unit Testing: unit-testing.md
- Notebooks: notebooks.md
- AppRun Site:
- Create: apprun-site.md
- Build: apprun-site-build.md
- Client-Side Rendering: apprun-site-csr.md
- Server-Side Rendering: apprun-site-ssr.md
- Static Web Site: apprun-site-static.md
- AppRun-Site CLI: apprun-site-cli.md
- Resources: resources.md
- About: about.md