https://github.com/redot-engine/redot-docs-site
https://github.com/redot-engine/redot-docs-site
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/redot-engine/redot-docs-site
- Owner: Redot-Engine
- Created: 2026-02-15T22:41:39.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2026-02-19T04:18:37.000Z (about 1 month ago)
- Last Synced: 2026-02-20T19:25:13.189Z (30 days ago)
- Language: Python
- Size: 10.7 MB
- Stars: 1
- Watchers: 0
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: docs/Contributing/Development/best_practices_for_engine_contributors.md
Awesome Lists containing this project
README
# Website
This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.
## Installation
```bash
yarn
```
## Local Development
```bash
yarn start
```
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
## Build
```bash
yarn build
```
This command generates static content into the `build` directory and can be served using any static contents hosting service.
## Deployment
Using SSH:
```bash
USE_SSH=true yarn deploy
```
Not using SSH:
```bash
GIT_USER= yarn deploy
```
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.