Thank you for investing your time in contributing to GDevelop's documentation! Any contribution you make will be reflected on wiki.gdevelop.io ✨.
In this guide you will get an overview of the contribution workflow.
To make a contribution, you shall follow those steps:
- Fork this repository
- Install the project
- Find an issue that you can resolve
- Open a Pull Request
- Once your Pull Request is merged, the wiki will be automatically be updated with your changes (a few minutes for changes to take effect)
First install:
Run:
poetry installmkdocs serve
# Or, for faster reload after changes:
mkdocs serve --dirtyreloadThis will run the wiki on http://localhost:8000.
Once you have the wiki running locally, you can start to contribute to the wiki.
GDevelop's wiki is based on Material for MkDocs and uses different plugins.
If you need to add a python package, add it with poetry:
poetry add packageAnd then update the requirements.txt file (used by vercel to deploy the wiki) with:
poetry export -f requirements.txt --output requirements.txt