|
| 1 | +site_name: Zero |
| 2 | +site_description: Zero - A simple Python RPC framework to build fast and high performance microservices |
| 3 | +site_url: https://ananto30.github.io/zero/ |
| 4 | +repo_url: https://github.com/Ananto30/zero |
| 5 | +repo_name: Ananto30/zero |
| 6 | +edit_uri: edit/main/docs/ |
| 7 | + |
| 8 | +theme: |
| 9 | + name: material |
| 10 | + logo: https://ananto30.github.io/i/1200xCL_TP.png |
| 11 | + favicon: https://ananto30.github.io/i/1200xCL_TP.png |
| 12 | + palette: |
| 13 | + - scheme: default |
| 14 | + primary: black |
| 15 | + accent: grey |
| 16 | + toggle: |
| 17 | + icon: material/brightness-7 |
| 18 | + name: Switch to dark mode |
| 19 | + - scheme: slate |
| 20 | + primary: black |
| 21 | + accent: grey |
| 22 | + toggle: |
| 23 | + icon: material/brightness-4 |
| 24 | + name: Switch to light mode |
| 25 | + features: |
| 26 | + - navigation.instant |
| 27 | + - navigation.tracking |
| 28 | + - navigation.top |
| 29 | + - search.suggest |
| 30 | + - search.highlight |
| 31 | + - content.tabs.link |
| 32 | + - content.code.copy |
| 33 | + |
| 34 | +nav: |
| 35 | + - Home: index.md |
| 36 | + - Getting Started: getting-started.md |
| 37 | + - Guides: |
| 38 | + - Installation: guides/installation.md |
| 39 | + - Basic Usage: guides/basic-usage.md |
| 40 | + - Error Handling: guides/error-handling.md |
| 41 | + - Serialization/Encoding: guides/serialization.md |
| 42 | + - TCP Protocol: guides/tcp-protocol.md |
| 43 | + - Code Generation: guides/code-generation.md |
| 44 | + - Async/Await: guides/async-await.md |
| 45 | + - Examples: |
| 46 | + - Basic Echo: examples/basic-echo.md |
| 47 | + - Order Management: examples/order-management.md |
| 48 | + - API Reference: |
| 49 | + - Server: api/server.md |
| 50 | + - Client: api/client.md |
| 51 | + - Async Client: api/async-client.md |
| 52 | + - Benchmarks: benchmarks.md |
| 53 | + - Contributing: contributing.md |
| 54 | + |
| 55 | +docs_dir: docs |
| 56 | +site_dir: site |
| 57 | + |
| 58 | +plugins: |
| 59 | + - search |
| 60 | + |
| 61 | +markdown_extensions: |
| 62 | + - pymdownx.highlight: |
| 63 | + use_pygments: true |
| 64 | + - pymdownx.superfences |
| 65 | + - pymdownx.inlinehilite |
| 66 | + - pymdownx.tabbed: |
| 67 | + alternate_style: true |
| 68 | + - pymdownx.emoji: |
| 69 | + emoji_index: !!python/name:material.extensions.emoji.twemoji |
| 70 | + emoji_generator: !!python/name:material.extensions.emoji.to_svg |
| 71 | + - admonition |
| 72 | + - pymdownx.details |
| 73 | + - toc: |
| 74 | + permalink: true |
| 75 | + |
| 76 | +extra: |
| 77 | + social: |
| 78 | + - icon: fontawesome/brands/github |
| 79 | + link: https://github.com/Ananto30/zero |
| 80 | + - icon: fontawesome/brands/python |
| 81 | + link: https://pypi.org/project/zeroapi/ |
0 commit comments