The Modding Wiki Site for Helldivers 2
Go to the site Here
Note
This is a tutorial about developing in VSCode. If you do not have VSCode, install it Here. VSCode is not explicitly required but it is extremely useful for development with it's integrations with Github.
- Create a fork of the repository
- Copy the link to your forked page
- Open VSCode and go to the Source Control Tab
- Click clone repository and paste the link to your fork
Now that your fork is setup, you can start developing. Vitepress General Guide
You will have to run these next commands in the terminal to get things going. To open the terminal go to View > Terminal in the file bar at the top of the window.
To install dependencies:
npm ciNote
If you encounter any errors with npm, it is likely because you do not have nodejs installed. Install Nodejs Here
Run a preview of the wiki locally:
npm run docs:devOnce your changes have been made, you can create a pull request in the Source Control Tab.
- All guides are markdown (
.md) files placed in the/docs/folder. - Properly Organize your guides into proper folders. Try not to nest too many folders.
- Keep all of your image content in the
/docs/.vitepress/public/images/folder. You can create a sub folder in this directory for each page you write.