# rspress-website-template **Repository Path**: ByteDance/rspress-website-template ## Basic Information - **Project Name**: rspress-website-template - **Description**: The website template which is based on rspress. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-23 - **Last Updated**: 2025-12-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Rspress website template This template is a show case of the [Rspress](https://rspress.dev/) which supports the [internationalization](https://rspress.dev/guide/default-theme/i18n.html) with some common documents of the open source project website. ## How to Start the website ```bash npm install # Install NPM dependencies npm run dev # Start local server npm run build # Build the production bundle, using the doc_build as the default output directory npm run preview # Start the local preview service ``` ## General Folder Structure ```txt rspress-template ├── docs/ # Latest English docs, use kebab-case │   ├── en # the English version of the documents │   │   ├── _meta.json │   │   ├── community │   │   │   └── index.md │   │   ├── downloads.md │   │   ├── guide │   │   │   ├── _meta.json │   │   │   ├── developer │   │   │   │   ├── build.md │   │   │   │   ├── contribution.md │   │   │   │   └── release.md │   │   │   ├── start │   │   │   │   └── quick.md │   │   └── index.md │   ├── public # the common images file share within the document │   │   ├── rspress-dark-logo.png │   │   ├── rspress-icon.png │   │   └── rspress-light-logo.png │   └── zh # the Chinese version of the documents │   ├── _meta.json │   ├── community │   │   └── index.md │   ├── downloads.md │   ├── guide │   │   ├── _meta.json │   │   ├── developer │   │   │   ├── build.md │   │   │   ├── contribution.md │   │   │   └── release.md │   │   ├── start │   │   │   └── quick.md │      └── index.md ├── i18n.json # the internationalization file ... ```