Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

mkdocs.yml 4.2 KiB

5 år sedan
5 år sedan
5 år sedan
5 år sedan
5 år sedan
5 år sedan
5 år sedan
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 år sedan
5 år sedan
5 år sedan
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. # Project information
  2. site_name: CAP Document
  3. site_url: http://cap.dotnetcore.xyz
  4. site_description: Project documentation with Markdown.
  5. site_author: CAP Team
  6. repo_name: 'GitHub'
  7. repo_url: 'https://github.com/dotnetcore/CAP'
  8. docs_dir: 'content'
  9. # Copyright
  10. copyright: Copyright &copy; 2017 <a href="https://github.com/dotnetcore">.NET Core Community</a>, Maintained by the <a href="/about/contact-us/#cap-team">CAP Team</a>.
  11. #theme: material
  12. theme:
  13. name: 'material'
  14. palette:
  15. primary: 'purple'
  16. accent: 'indigo'
  17. language: 'en'
  18. include_sidebar: true
  19. #logo: 'img/logo.png'
  20. #favicon: 'assets/images/favicon.ico'
  21. feature:
  22. tabs: false
  23. i18n:
  24. prev: 'Previous'
  25. next: 'Next'
  26. #Customization
  27. extra:
  28. social:
  29. - type: 'github'
  30. link: 'https://github.com/dotnetcore/CAP'
  31. - type: 'twitter'
  32. link: 'https://twitter.com/ncc_community'
  33. - type: 'weibo'
  34. link: 'https://weibo.com/dotnetcore'
  35. # Extensions
  36. markdown_extensions:
  37. - markdown.extensions.admonition
  38. - markdown.extensions.codehilite:
  39. guess_lang: true
  40. linenums: true
  41. - markdown.extensions.def_list
  42. - markdown.extensions.footnotes
  43. - markdown.extensions.meta
  44. - markdown.extensions.toc:
  45. permalink: true
  46. - pymdownx.arithmatex
  47. - pymdownx.betterem:
  48. smart_enable: all
  49. - pymdownx.caret
  50. - pymdownx.critic
  51. - pymdownx.details
  52. - pymdownx.emoji:
  53. emoji_generator: !!python/name:pymdownx.emoji.to_svg
  54. - pymdownx.inlinehilite
  55. - pymdownx.keys
  56. - pymdownx.magiclink:
  57. repo_url_shorthand: true
  58. user: dotnetcore
  59. repo: cap
  60. - pymdownx.mark
  61. - pymdownx.smartsymbols
  62. - pymdownx.superfences
  63. - pymdownx.tasklist:
  64. custom_checkbox: true
  65. - pymdownx.tilde
  66. # nav:
  67. # - Home: index.md
  68. # - User Guide:
  69. # - Getting Started: user-guide/getting-started.md
  70. # - API Interface: user-guide/api-interface.md
  71. # - Configuration: user-guide/configuration.md
  72. # - Design Principle: user-guide/design.md
  73. # - Implementation Mechanisms: user-guide/implementation.md
  74. # - Distributed Transactions: user-guide/transaction.md
  75. # - FAQ: user-guide/faq.md
  76. # - 使用指南:
  77. # - 快速开始: user-guide-cn/getting-started.md
  78. # - API 接口: user-guide-cn/api-interface.md
  79. # - 配置: user-guide-cn/configuration.md
  80. # - 设计原理: user-guide-cn/design-principle.md
  81. # - 实现: user-guide-cn/implementation.md
  82. # - 分布式事务: user-guide-cn/transactions.md
  83. # - FAQ: user-guide-cn/faq.md
  84. # - About:
  85. # - Release Notes: about/release-notes.md
  86. # - Contributing: about/contributing.md
  87. # - Contact Us: about/contact-us.md
  88. # - License: about/license.md
  89. nav:
  90. - Getting Stared:
  91. - Quick Start: user-guide/cn/getting-started/quick-start.md
  92. - Introduction: user-guide/cn/getting-started/introduction.md
  93. - Contributing: user-guide/cn/getting-started/contributing.md
  94. - CAP:
  95. - Configuration: user-guide/cn/cap/configuration.md
  96. - Messaging: user-guide/cn/cap/messaging.md
  97. - Sagas: user-guide/cn/cap/sagas.md
  98. - Serialization: user-guide/cn/cap/serialization.md
  99. - Transactions: user-guide/cn/cap/transactions.md
  100. - Idempotence: user-guide/cn/cap/idempotence.md
  101. - Upgrade Guides: user-guide/cn/cap/upgrade-guides.md
  102. - License: user-guide/cn/cap/license.md
  103. - Transports:
  104. - General: user-guide/cn/transports/general.md
  105. - RabbitMQ: user-guide/cn/transports/rabbitmq.md
  106. - Kafka: user-guide/cn/transports/kafka.md
  107. - Azure Service Bus: user-guide/cn/transports/azure-service-bus.md
  108. - In-Memory Message Queue: user-guide/cn/transports/in-memory-queue.md
  109. - Persistent:
  110. - General: user-guide/cn/persistent/general.md
  111. - SQL Server: user-guide/cn/persistent/sqlserver.md
  112. - MySQL: user-guide/cn/persistent/mysql.md
  113. - PostgreSql: user-guide/cn/persistent/postgresql.md
  114. - MongoDB: user-guide/cn/persistent/mongodb.md
  115. - In-Memory: user-guide/cn/persistent/in-memory-storage.md
  116. - Samples:
  117. - Github: user-guide/cn/samples/github.md
  118. - eShopOnContainers: user-guide/cn/samples/eshoponcontainers.md
  119. - FAQ: user-guide/cn/samples/faq.md