Various info regarding the hard-/software of the Xbox One gaming console family.
Python framework mkdocs
is used to render the Markdown documentation.
Contributions are very welcome. Here's how you can help:
- Add / correct / expand technical information
- Improve documentation style
- Correct spelling / grammar
- Check ISSUES tab...
- Fork this repo
- Make changes
- Verify your changes are formatted properly
- Send a Pull Request
- Clone your fork of the wiki (Change 'yourusername' accordingly)
git clone [email protected]:yourusername/wiki.git
- Navigate into wiki repository folder
cd wiki/
- Create & activate python virtual-environment (might need dependency
python3-venv
, see: https://docs.python.org/3/library/venv.html)
python3 -m venv venv
source venv/bin/activate
- Install mkdocs and dependencies
pip install -r requirements.txt
- Edit docs and verify with the following commands:
Serve the documentation
make serve
Build the documentation
make build --strict
- Commit & push your changes
- Send a Pull Request