This repository is for documentation under CanvasMC's organization.
Let's get these docs running on your local machine. To get started, you'll need to have Bun installed.
Assuming you're on macOS or Linux, run the following command in your terminal:
curl -fsSL https://bun.com/install | bashFor Windows users, you can run this in your PowerShell instead:
powershell -c "irm bun.sh/install.ps1|iex"Once you have Bun installed, you can make any changes to our docs directly in the src/content/docs/ directory.
To see your changes live, run the following command in your terminal:
bun run devThis will start a local development server at http://localhost:3000 where you can view your changes in real time.
To build the documentation for production, run the following command in your terminal:
bun run buildThis will create a production-ready build of the documentation in the dist/ directory that
can be hosted on any static hosting server.
The documentation is licensed under the GNU Affero General Public License.
You are free to use, modify, and distribute the documentation as long as you comply with the terms of the license.