You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

169 lines
6.3 KiB

  1. # Project information
  2. site_name: CAP
  3. site_url: http://cap.dotnetcore.xyz
  4. site_description: A distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern.
  5. site_author: CAP Team
  6. repo_name: "GitHub"
  7. repo_url: "https://github.com/dotnetcore/CAP"
  8. edit_uri: "edit/master/docs/content"
  9. docs_dir: "content"
  10. # Copyright
  11. copyright: Copyright &copy; 2021 <a href="https://github.com/dotnetcore">NCC</a>, Maintained by the <a href="/about/contact-us/#cap-team">CAP Team</a>.
  12. #theme: material
  13. theme:
  14. name: "material"
  15. palette:
  16. primary: "deep purple"
  17. accent: "indigo"
  18. language: en
  19. include_sidebar: true
  20. logo: "img/logo.svg"
  21. favicon: "img/favicon.ico"
  22. features:
  23. - navigation.tabs
  24. - navigation.instant
  25. i18n:
  26. prev: "Previous"
  27. next: "Next"
  28. #Customization
  29. extra:
  30. alternate:
  31. - name: English
  32. link: /user-guide/en/getting-started/quick-start
  33. lang: en
  34. - name: 中文
  35. link: /user-guide/zh/getting-started/quick-start
  36. lang: zh
  37. social:
  38. - icon: "fontawesome/brands/github"
  39. link: "https://github.com/dotnetcore/CAP"
  40. - icon: "fontawesome/brands/twitter"
  41. link: "https://twitter.com/ncc_community"
  42. - icon: "fontawesome/brands/weibo"
  43. link: "https://weibo.com/dotnetcore"
  44. # Extensions
  45. markdown_extensions:
  46. - markdown.extensions.admonition
  47. - markdown.extensions.codehilite:
  48. guess_lang: true
  49. linenums: false
  50. - markdown.extensions.def_list
  51. - markdown.extensions.footnotes
  52. - markdown.extensions.meta
  53. - markdown.extensions.toc:
  54. permalink: true
  55. - pymdownx.arithmatex
  56. - pymdownx.betterem:
  57. smart_enable: all
  58. - pymdownx.caret
  59. - pymdownx.critic
  60. - pymdownx.details
  61. - pymdownx.emoji:
  62. emoji_generator: !!python/name:pymdownx.emoji.to_svg
  63. - pymdownx.inlinehilite
  64. - pymdownx.keys
  65. - pymdownx.magiclink:
  66. repo_url_shorthand: true
  67. user: dotnetcore
  68. repo: cap
  69. - pymdownx.mark
  70. - pymdownx.smartsymbols
  71. - pymdownx.superfences
  72. - pymdownx.tasklist:
  73. custom_checkbox: true
  74. - pymdownx.tilde
  75. nav:
  76. - Home: index.md
  77. - Documentation:
  78. - Getting Started:
  79. - Quick Start: user-guide/en/getting-started/quick-start.md
  80. - Introduction: user-guide/en/getting-started/introduction.md
  81. - Contributing: user-guide/en/getting-started/contributing.md
  82. - CAP:
  83. - Configuration: user-guide/en/cap/configuration.md
  84. - Messaging: user-guide/en/cap/messaging.md
  85. - Filter: user-guide/en/cap/filter.md
  86. - Serialization: user-guide/en/cap/serialization.md
  87. - Transactions: user-guide/en/cap/transactions.md
  88. - Idempotence: user-guide/en/cap/idempotence.md
  89. - Transport:
  90. - General: user-guide/en/transport/general.md
  91. - Amazon SQS: user-guide/en/transport/aws-sqs.md
  92. - Apache Kafka®: user-guide/en/transport/kafka.md
  93. - Apache Pulsar: user-guide/en/transport/pulsar.md
  94. - Azure Service Bus: user-guide/en/transport/azure-service-bus.md
  95. - NATS: user-guide/en/transport/nats.md
  96. - RabbitMQ: user-guide/en/transport/rabbitmq.md
  97. - Redis Streams: user-guide/en/transport/redis-streams.md
  98. - In-Memory Queue: user-guide/en/transport/in-memory-queue.md
  99. - Storage:
  100. - General: user-guide/en/storage/general.md
  101. - SQL Server: user-guide/en/storage/sqlserver.md
  102. - MySQL: user-guide/en/storage/mysql.md
  103. - PostgreSql: user-guide/en/storage/postgresql.md
  104. - MongoDB: user-guide/en/storage/mongodb.md
  105. - In-Memory: user-guide/en/storage/in-memory-storage.md
  106. - Monitoring:
  107. - Consul: user-guide/en/monitoring/consul.md
  108. - Dashboard: user-guide/en/monitoring/dashboard.md
  109. - Diagnostics: user-guide/en/monitoring/diagnostics.md
  110. - OpenTelemetry: user-guide/en/monitoring/opentelemetry.md
  111. - Samples:
  112. - Github: user-guide/en/samples/github.md
  113. - eShopOnContainers: user-guide/en/samples/eshoponcontainers.md
  114. - FAQ: user-guide/en/samples/faq.md
  115. - 文档(中文):
  116. - 入门:
  117. - 快速开始: user-guide/zh/getting-started/quick-start.md
  118. - 介绍: user-guide/zh/getting-started/introduction.md
  119. - 贡献: user-guide/zh/getting-started/contributing.md
  120. - CAP:
  121. - 配置: user-guide/zh/cap/configuration.md
  122. - 消息: user-guide/zh/cap/messaging.md
  123. - 过滤器: user-guide/zh/cap/filter.md
  124. - 序列化: user-guide/zh/cap/serialization.md
  125. - 事务: user-guide/zh/cap/transactions.md
  126. - 幂等性: user-guide/zh/cap/idempotence.md
  127. - 传输:
  128. - 简介: user-guide/zh/transport/general.md
  129. - Amazon SQS: user-guide/zh/transport/aws-sqs.md
  130. - Apache Kafka®: user-guide/zh/transport/kafka.md
  131. - Apache Pulsar: user-guide/zh/transport/pulsar.md
  132. - Azure Service Bus: user-guide/zh/transport/azure-service-bus.md
  133. - NATS: user-guide/zh/transport/nats.md
  134. - RabbitMQ: user-guide/zh/transport/rabbitmq.md
  135. - Redis Streams: user-guide/zh/transport/redis-streams.md
  136. - In-Memory Queue: user-guide/zh/transport/in-memory-queue.md
  137. - 存储:
  138. - 简介: user-guide/zh/storage/general.md
  139. - SQL Server: user-guide/zh/storage/sqlserver.md
  140. - MySQL: user-guide/zh/storage/mysql.md
  141. - PostgreSql: user-guide/zh/storage/postgresql.md
  142. - MongoDB: user-guide/zh/storage/mongodb.md
  143. - In-Memory: user-guide/zh/storage/in-memory-storage.md
  144. - 监控:
  145. - Consul: user-guide/zh/monitoring/consul.md
  146. - Dashboard: user-guide/zh/monitoring/dashboard.md
  147. - Diagnostics: user-guide/zh/monitoring/diagnostics.md
  148. - OpenTelemetry: user-guide/zh/monitoring/opentelemetry.md
  149. - 示例:
  150. - Castle DynamicProxy: user-guide/zh/samples/castle.dynamicproxy.md
  151. - Github: user-guide/zh/samples/github.md
  152. - eShopOnContainers: user-guide/zh/samples/eshoponcontainers.md
  153. - FAQ: user-guide/zh/samples/faq.md
  154. - About:
  155. - Contact Us: about/contact-us.md
  156. - Release Notes: about/release-notes.md
  157. - License: about/license.md
  158. # Google Analytics
  159. google_analytics:
  160. - !!python/object/apply:os.getenv ["GOOGLE_ANALYTICS_KEY"]
  161. - auto