Contributing to this Wiki
Before contributing
This is the official and open-source wiki for the modpack Star Technology. Anyone can contribute to it, but before you do, you need to follow these ground rules:
- Do not make troll submissions.
- Do not create new pages on the wiki without asking the devs for permission.
- Do not contribute any content that is the intellectual property of another party (such as images, diagrams, etc) without permission from its original creator.
Prerequisites
- Git - A version control system that allows you to push changes to the GitHub repository.
- Visual Studio Code - A code editor integrated with Git with plenty of extensions to assist you.
- GitHub Account - The platform hosting the repository for this wiki.
- Python - The programming language that makes this wiki work.
Preparing the workspace
Note
This wiki uses Material for MkDocs to generate documentation from markdown pages.
- Fork the repository.
- Open Visual Studio Code.
- From the Welcome page, click on Clone Git repository, select Clone from GitHub, and select
YOUR-NAME/StarT-docs
. - Open a new terminal from the toolbar.
-
Run the following commands:
-
To create the environment:
-
To activate the environment:
-
To install Material for MkDocs:
-
-
Run this command to launch the app:
You can now access your local wiki copy at http://127.0.0.1:8000/, and any changes you make will be reflected in the browser automatically. To stop the app, pressCtrl+C
in the terminal. - Once you are finished making changes, commit them and open a pull request to the main repository.
Useful resources
- Material for MkDocs reference page
- GitHub Docs pages for working with forks and creating pull requests