This repository contains the source code for the documentation website of the AAS Minecraft Plugin. The website is built using Docusaurus.
To get a local copy up and running, follow these simple steps:
- Clone the repository:
git clone <repository-url>
- Navigate to the project directory:
cd minecraft-plugin-docs - Install dependencies:
npm install # or yarn install - Start the development server:
This will open the website in your default browser, usually at
npm run start # or yarn starthttp://localhost:3000.
To generate a static build of the website, run:
npm run build
# or
yarn buildThe build artifacts will be located in the build directory.
To deploy the website (e.g., to GitHub Pages if configured), run:
npm run deploy
# or
yarn deployEnsure your deployment configuration in docusaurus.config.js is set up correctly.
Contributions are welcome! If you have suggestions or improvements, please follow these steps:
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Distributed under the MIT License. See LICENCE for more information.