# seata.github.io **Repository Path**: mirrors_seata/seata.github.io ## Basic Information - **Project Name**: seata.github.io - **Description**: Apache Seata(incubating) Website - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: docusaurus - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-07 - **Last Updated**: 2026-03-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Seata Official Website [![seata website deploy on github](https://github.com/apache/incubator-seata-website/actions/workflows/deploy.yml/badge.svg?branch=docusaurus)](https://github.com/apache/incubator-seata-website/actions/workflows/deploy.yml) All website material of [https://seata.apache.org](https://seata.apache.org), which uses a open source framework: Docusaurus. ## README.md - en [English](README.md) - zh_CN [简体中文](readme/README.zh_CN.md) ### Quick Start 1. `npm install` 2. `npm run start` for starting Seata's **English** webpage in your local machine. `npm run start-zh-cn` for starting Seata's **Chinese Simplified** webpage in your local machine. 3. Visit ```text localhost:3000/ ``` ### Build 1. `npm run build` 2. `npm run serve` 3. Visit ```text localhost:3000/ ``` ## Requirements Base docusaurus **2.4.1** Node.js version **19.5.0** ## Note for i18n Please be noted that **locale switching function doesn't work** if you start the website in development mode using `npm run start-zh-cn` or `npm run start`. Please run it in production mode using the build-and-serve process to enable the locale switching function. ## Overview of the Website Structure We use the **Docusaurus internationalization (i18n)** to support both English(en) and Chinese Simplified(zh-cn) Seata Website. Besides, we apply **Docusaurus Versioning** to get versioned docs. Our website stucture with i18n and versioning looks like below: ```text website ├── sidebars.json # sidebar for the current docs version ├── docs # docs directory for the current docs version │ ├── foo │ │ └── bar.md # https://mysite.com/docs/next/foo/bar │ └── hello.md # https://mysite.com/docs/next/hello ├── versions.json # file to indicate what versions are available ├── versioned_docs │ ├── version-1.1.0 │ │ ├── foo │ │ │ └── bar.md # https://mysite.com/docs/foo/bar │ │ └── hello.md │ └── version-1.0.0 │ ├── foo │ │ └── bar.md # https://mysite.com/docs/1.0.0/foo/bar │ └── hello.md ├── versioned_sidebars │ ├── version-1.1.0-sidebars.json │ └── version-1.0.0-sidebars.json ├── blog ├── docusaurus.config.js ├── package.json ├── i18n │ ├── en │ │ ├── docusaurus-plugin-content-docs │ │ │ ├── current │ │ │ ├── version-1.0.0 │ │ │ └── version-1.1.0 │ │ ├── docusaurus-plugin-content-blog │ │ └── ... │ └── zh-cn │ │ ├── docusaurus-plugin-content-docs │ │ │ ├── current │ │ │ ├── version-1.0.0 │ │ │ └── version-1.1.0 │ │ ├── docusaurus-plugin-content-blog │ │ └── ... ``` ## How To Add Documents ### Directories Related to Adding Documents docs - Contain the current (latest version) documents (placeholder for sidebar indexing purposes) Document Content should be `Placeholder. DO NOT DELETE.` sidebars.json - Set the sidebar for the current (latest version) documents. versioned_docs - Contain the previous version documents (placeholder for sidebar indexing purposes) Document Content should be `Placeholder. DO NOT DELETE.` versioned_sidebars - Set the sidebar for the specific previous versions documents. i18n-`en`-docusaurus-plugin-content-docs-`current` - Contain the actual **latest version** English documents. i18n-`en`-docusaurus-plugin-content-docs-`version-1.0.0` - Contain the actual **1.0.0 version** English documents. i18n-`zh-cn`-docusaurus-plugin-content-docs-`current` - Contains the actual **latest version** Simplified Chinese documents. i18n-`zh-cn`-docusaurus-plugin-content-docs-`version-1.0.0` - Contain the actual **1.0.0 version** Simplified Chinese documents. ### Summary of Adding Documents Steps to add a document for the **latest version**: 1. Place placeholder document under the docs directory which is located in the root directory. 2. Update sidebar.js, add a new entry to the path of this document. 3. Place the English document under the i18-`en`-docusaurus-plugin-content-docs-`current` directory. 4. Place the Chinese document under the i18-`zh-cn`-docusaurus-plugin-content-docs-`current` directory. Steps to add a document for a **previous version**: 1. Place a placeholder document under the specific versioned_docs directory for the desired version which is located in the root directory. 2. Update specific versioned_sidebars file, add a new entry to the path of this document. 3. Place the English document under the i18-`en`-docusaurus-plugin-content-docs-`specific version number` directory. 4. Place the Chinese document under the i18-`zh-cn`-docusaurus-plugin-content-docs-`specific version number` directory. > Notes: Corresponding to Chinese file and English file of same contents, and the Chinese and English file names should be consistent. ## How To Add Blogs We don't have a versioned blog, so it's easier to add a blog. When adding a new blog, it is automatically added in the Blog sidebar, where the order of blogs is sorted by the `date` field in SEO in the blog file. ### Directories Related to Adding Blogs blog - Contain the blogs(placeholder for blog sidebar indexing purposes) Blog Content should be `Placeholder. DO NOT DELETE.` i18n-`en`-docusaurus-plugin-content-blog - Contain all the actual English blogs. i18n-`zh-cn`-docusaurus-plugin-content-blog - Contain all the actual Simplified Chinese blogs. ### Summary of Adding Blogs Steps to add a blog: 1. Place placeholder blog under the blog directory which is located in the root directory. 2. Place the English blog under the i18-`en`-docusaurus-plugin-content-blog directory. 3. Place the Chinese blog under the i18-`zh-cn`-docusaurus-plugin-content-blog directory. > Notes: Corresponding to Chinese file and English file of same contents, and the Chinese and English file names should be consistent. ## SEO Needed in Both Docs and Blogs The type is: ```text --- title: title keywords: [keywords1,keywords2] description: some description author: author name date: 2018-12-29 custom_edit_url: https://github.com/apache/incubator-seata-website/blob/docusaurus/i18n/en/docusaurus-plugin-content-blog/quick-start-use-seata-and-dubbo-services.md --- ``` **Note:** 1. `title` can not include `:` 2. `keywords` must be a `Array` ## Note for .md file 1. Do not use un correct html tag like `
`, replace with `
` 2. If you want show ``, replace with `<xx>` 3. Use `npm run lint` to check the style. ## Others This is official Docusaurus docs: [https://docusaurus.io/docs](https://docusaurus.io/docs)