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.

mkdocs.yml 5.4 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
add docs to master (#284) * update version to 2.4.0 * Add version options to config file. * update resource * add message version support for dashboard * add message version support for dashboard * Support using version to isolate messages. #220 * update mongo unit tests * update unit tests * update unit tests * Set default versions for consumer groups * solve the problem of issue#181 (#237) * Issue#235 (#238) * solve the problem of issue#181 * solve the problem of issue#235 * refactor * Fix the message persistence bug. #240 * using new CamelCaseNamingStrategy * update packages to .net core 2.2 * update test framework to netcoreapp2.2 * Update .travis.yml * update TargetFramework * Exclude build samples project * update version to 2.4.1 * add samples project to sln for build * update version to 2.4.2 * Fixed PostgreSql version isolation feature bug. (#256) * Fixed spelling errors * modify cap publish Message to rabbitmq slow (#261) * Startup the CAP with the BackgroundService. #265 * update samples * Fixed SQL query bug. #266 * update travis ci config * update travis ci config * adjust dashboard table column width * adjust the consumer execution time to milliseconds * update ignore * add mkdocs.yml * update version to 2.4.3 * add about.md docs * add index.md docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * Fix resource files * add docs * add docs * add docs * Create readme.md * add markdown extensions supports * update about.md * add CNAME fiel * add img * update docs * Update README.zh-cn.md
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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; 2017 <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. feature:
  23. tabs: true
  24. i18n:
  25. prev: 'Previous'
  26. next: 'Next'
  27. #Customization
  28. extra:
  29. social:
  30. - type: 'github'
  31. link: 'https://github.com/dotnetcore/CAP'
  32. - type: 'twitter'
  33. link: 'https://twitter.com/ncc_community'
  34. - type: 'weibo'
  35. link: 'https://weibo.com/dotnetcore'
  36. # Extensions
  37. markdown_extensions:
  38. - markdown.extensions.admonition
  39. - markdown.extensions.codehilite:
  40. guess_lang: true
  41. linenums: false
  42. - markdown.extensions.def_list
  43. - markdown.extensions.footnotes
  44. - markdown.extensions.meta
  45. - markdown.extensions.toc:
  46. permalink: true
  47. - pymdownx.arithmatex
  48. - pymdownx.betterem:
  49. smart_enable: all
  50. - pymdownx.caret
  51. - pymdownx.critic
  52. - pymdownx.details
  53. - pymdownx.emoji:
  54. emoji_generator: !!python/name:pymdownx.emoji.to_svg
  55. - pymdownx.inlinehilite
  56. - pymdownx.keys
  57. - pymdownx.magiclink:
  58. repo_url_shorthand: true
  59. user: dotnetcore
  60. repo: cap
  61. - pymdownx.mark
  62. - pymdownx.smartsymbols
  63. - pymdownx.superfences
  64. - pymdownx.tasklist:
  65. custom_checkbox: true
  66. - pymdownx.tilde
  67. nav:
  68. - Home: index.md
  69. - Documentation:
  70. - Getting Started:
  71. - Quick Start: user-guide/en/getting-started/quick-start.md
  72. - Introduction: user-guide/en/getting-started/introduction.md
  73. - Contributing: user-guide/en/getting-started/contributing.md
  74. - CAP:
  75. - Configuration: user-guide/en/cap/configuration.md
  76. - Messaging: user-guide/en/cap/messaging.md
  77. - Sagas: user-guide/en/cap/sagas.md
  78. - Serialization: user-guide/en/cap/serialization.md
  79. - Transactions: user-guide/en/cap/transactions.md
  80. - Idempotence: user-guide/en/cap/idempotence.md
  81. - Transports:
  82. - General: user-guide/en/transports/general.md
  83. - RabbitMQ: user-guide/en/transports/rabbitmq.md
  84. - Apache Kafka®: user-guide/en/transports/kafka.md
  85. - Azure Service Bus: user-guide/en/transports/azure-service-bus.md
  86. - In-Memory Queue: user-guide/en/transports/in-memory-queue.md
  87. - Persistent:
  88. - General: user-guide/en/persistent/general.md
  89. - SQL Server: user-guide/en/persistent/sqlserver.md
  90. - MySQL: user-guide/en/persistent/mysql.md
  91. - PostgreSql: user-guide/en/persistent/postgresql.md
  92. - MongoDB: user-guide/en/persistent/mongodb.md
  93. - In-Memory: user-guide/en/persistent/in-memory-storage.md
  94. - Monitoring:
  95. - Dashboard: user-guide/en/monitoring/dashboard.md
  96. - Diagnostics: user-guide/en/monitoring/diagnostics.md
  97. - Samples:
  98. - Github: user-guide/en/samples/github.md
  99. - eShopOnContainers: user-guide/en/samples/eshoponcontainers.md
  100. - FAQ: user-guide/en/samples/faq.md
  101. - 文档(中文):
  102. - 入门:
  103. - 快速开始: user-guide/zh/getting-started/quick-start.md
  104. - 介绍: user-guide/zh/getting-started/introduction.md
  105. - 贡献: user-guide/zh/getting-started/contributing.md
  106. - CAP:
  107. - 配置: user-guide/zh/cap/configuration.md
  108. - 消息: user-guide/zh/cap/messaging.md
  109. - Sagas: user-guide/zh/cap/sagas.md
  110. - 序列化: user-guide/zh/cap/serialization.md
  111. - 运输: user-guide/zh/cap/transactions.md
  112. - 幂等性: user-guide/zh/cap/idempotence.md
  113. - 传输:
  114. - 简介: user-guide/zh/transports/general.md
  115. - RabbitMQ: user-guide/zh/transports/rabbitmq.md
  116. - Apache Kafka®: user-guide/zh/transports/kafka.md
  117. - Azure Service Bus: user-guide/zh/transports/azure-service-bus.md
  118. - In-Memory Queue: user-guide/zh/transports/in-memory-queue.md
  119. - 持久化:
  120. - 简介: user-guide/zh/persistent/general.md
  121. - SQL Server: user-guide/zh/persistent/sqlserver.md
  122. - MySQL: user-guide/zh/persistent/mysql.md
  123. - PostgreSql: user-guide/zh/persistent/postgresql.md
  124. - MongoDB: user-guide/zh/persistent/mongodb.md
  125. - In-Memory: user-guide/zh/persistent/in-memory-storage.md
  126. - 监控:
  127. - Consul: user-guide/zh/monitoring/consul.md
  128. - Dashboard: user-guide/zh/monitoring/dashboard.md
  129. - Diagnostics: user-guide/zh/monitoring/diagnostics.md
  130. - 健康检查: user-guide/zh/monitoring/health-checks.md
  131. - Metrics: user-guide/zh/monitoring/metrics.md
  132. - 示例:
  133. - Github: user-guide/zh/samples/github.md
  134. - eShopOnContainers: user-guide/zh/samples/eshoponcontainers.md
  135. - FAQ: user-guide/zh/samples/faq.md
  136. - About:
  137. - Contact Us: about/contact-us.md
  138. - Release Notes: about/release-notes.md
  139. - License: about/license.md