Edge AI game development on Raspberry Pi hardware
- Python 3.11+
- Raspberry Pi 5
- Make
# Install dependencies
make setup
# Run documentation locally
make docs
# Update documentation
make update-docs
# Build project
make build
# Run tests
make test
# Clean build artifacts
make clean
# Deploy documentation
make deploy-docs
The documentation is automatically updated and deployed via GitHub Actions when changes are pushed to the main branch.
To update locally:
- Install documentation dependencies:
pip install -r docs/requirements.txt
- Run local server:
mkdocs serve
- View at:
http://localhost:8000
.
├── docs/ # Documentation
├── scripts/ # Utility scripts
├── src/ # Source code
├── tests/ # Test files
├── Makefile # Build automation
└── mkdocs.yml # Documentation config
This project is licensed under the Mater Development General Use License (MDGUL) v1.1.
Copyright (c) 2023 Mater Development
The MDGUL allows personal and educational use while restricting commercial use and redistribution. See the LICENSE file for full terms.