If you somehow want to contribute to Carch Docs, you're more than welcome!
You can contribute by:
- Fixing any mistakes or typos in guides
- Translating the documentation into other languages (this is highly encouraged!)
If you're contributing a new language:
- Check the
config.ts
file to understand how to add your language. - Add your translated content inside the appropriate subfolder in the
docs
directory.
Thanks in advance for your support!
Assuming you already have all the usual Node.js dependencies (e.g., Node.js, NVM, Bun, Npm)
git clone https://github.com/carch-org/docs
cd docs
cd <clone dir>
bun add -D vitepress
To generate the static documentation files:
bun run docs:build
To preview the generated build locally:
bun run docs:preview
Copy the local IP address provided and paste it into your browser to view the documentation.
To see live changes while editing the documentation:
bun run docs:dev