https://github.com/offendingcommit/commit-bingo
Bingo Card used on Twitch
https://github.com/offendingcommit/commit-bingo
Last synced: 15 days ago
JSON representation
Bingo Card used on Twitch
- Host: GitHub
- URL: https://github.com/offendingcommit/commit-bingo
- Owner: offendingcommit
- License: mit
- Created: 2025-02-09T21:44:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-11-15T21:37:09.000Z (8 months ago)
- Last Synced: 2026-06-04T21:48:19.393Z (about 1 month ago)
- Language: Python
- Size: 400 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Bingo



[](https://youtube.com/@offendingcommit)
[](https://twitch.tv/offendingcommit)
A customizable bingo board generator built with NiceGUI and Python. Create interactive bingo games for your streams, meetings, or events!

## Features
- **Custom Phrases**: Supply your own list of phrases for unique bingo experiences
- **Shareable Boards**: Generate view-only links to share with your audience
- **Interactive UI**: Mark squares with a simple click
- **Stream Integration**: Perfect for Twitch and YouTube streamers
- **Responsive Design**: Works on desktop and mobile devices
- **Docker Support**: Easy deployment with Docker
- **Kubernetes Ready**: Helm charts included for Kubernetes deployment
## Installation
### Prerequisites
- Python 3.12 or higher
- Poetry (recommended for dependency management)
### Quick Setup
```bash
# Clone the repository
git clone https://github.com/OffendingCommit/commit-bingo.git
cd commit-bingo
# Run the setup script
./setup.sh
```
### Manual Setup
```bash
# Clone the repository
git clone https://github.com/OffendingCommit/commit-bingo.git
cd commit-bingo
# Install dependencies with Poetry
poetry install
# Run the application
poetry run python main.py
```
### Docker Installation
```bash
# Build the Docker image
docker build -t bingo .
# Run the container
docker run -p 8080:8080 bingo
```
### Kubernetes Deployment
```bash
# Deploy using Helm
cd helm && ./package.sh
helm install bingo ./bingo
```
## Usage
1. Access the application at `http://localhost:8080`
2. Customize your bingo phrases in `phrases.txt` or through the UI
3. Share the view-only link with your audience
4. Mark squares as they occur during your stream or event
## Configuration
### Custom Phrases
Edit the `phrases.txt` file to add your own phrases, one per line. The application will randomly select from these phrases to generate boards.
### Environment Variables
- `PORT`: Set the port number (default: 8080)
- `HOST`: Set the host address (default: 0.0.0.0)
- `DEBUG`: Enable debug mode (default: False)
## Development
For detailed development instructions and code standards, see [CLAUDE.md](CLAUDE.md).
```bash
# Install dev dependencies
poetry install
# Run tests
poetry run pytest
# Run linters
poetry run flake8
poetry run black --check .
poetry run isort --check .
# Format code
poetry run black .
poetry run isort .
```
## About the Author
[Offending Commit](https://github.com/OffendingCommit) is a software engineer, streamer, and content creator focused on coding, technology, and programming best practices.
- **YouTube**: [Offending Commit](https://youtube.com/@offendingcommit) - Tutorials, coding sessions, and tech reviews
- **Twitch**: [offendingcommit](https://twitch.tv/offendingcommit) - Live coding streams and interactive programming sessions
- **GitHub**: [OffendingCommit](https://github.com/OffendingCommit) - Open source projects and contributions
Join the community to learn about software development, DevOps, and tooling in a fun and engaging environment!
## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
1. Fork the repository
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes using conventional commits (`git commit -m 'feat: add amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## Acknowledgments
- [NiceGUI](https://github.com/zauberzeug/nicegui) for the UI framework
- All contributors and community members