This repository contains documentation for our FRC team β including robot software, hardware schematics, and developer guides. It is built with MkDocs and the Material for MkDocs theme.
Before you can run the wiki locally, make sure you have:
- Python 3.9+ installed
- Git installed
- (Optional) A code editor like VS Code for editing markdown files
- Open a terminal or command prompt.
- Install MkDocs using pip:
pip install mkdocsInstall the Material theme:
pip install mkdocs-materialVerify installation:
mkdocs --versionYou should see something like MkDocs 1.5.2.
To preview the wiki on your own machine:
- Navigate to the root of this repository:
cd path/to/team-wiki- Serve the site locally:
mkdocs serve- Open a browser and go to:
http://127.0.0.1:8000/
- Make sure your repository is pushed to GitHub.
- Build and deploy the site:
mkdocs gh-deployThis will generate the site and push it to the gh-pages branch. GitHub Pages will automatically serve it at:
https://<your-github-username>.github.io/<repository-name>/
Tip: Update site_url in mkdocs.yml with your GitHub Pages URL so all links work correctly.
- All content is in the docs/ folder.
- Navigation is controlled via mkdocs.yml.
- Use Markdown (.md) to add or update pages.
- Images and assets go in docs/assets/.