Skip to content

xboxoneresearch/wiki

Repository files navigation

Xbox One Research Wiki

GitHub Workflow – Build

Various info regarding the hard-/software of the Xbox One gaming console family.

Python framework mkdocs is used to render the Markdown documentation.

Contribute

Contributions are very welcome. Here's how you can help:

  • Add / correct / expand technical information

  • Improve documentation style

  • Correct spelling / grammar

  • Check the "Issues" tab…

Workflow

  1. Fork this repo

  2. Make changes

  3. Verify your changes are formatted properly (otherwise the PR cannot be accepted)

  4. Send a Pull Request

Note

When adding a new page, ensure it's linked in NAVIGATION.md.

Local testing

  1. Clone your fork of the wiki (Change 'YourUsername' accordingly):

    git clone git@github.com:YourUsername/wiki.git
  2. Navigate into wiki repository folder

    cd wiki/
  3. Choose one of the two deployment methods below.

Native deployment

  1. 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
  2. Install mkdocs, and its dependencies:

    pip install -r requirements.txt
  3. Edit docs and verify with the following commands:

    1. Serve the documentation (http://127.0.0.1:8000):

      mkdocs serve --strict
    2. Build the documentation:

      mkdocs build --strict

Docker deployment

  1. Execute docker container:

    docker compose up
  2. Navigate to http://127.0.0.1:8000.

  3. Make your changes, then verify the formatting / linking still checks out.

Contributors