https://github.com/bramp/judgy
https://github.com/bramp/judgy
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/bramp/judgy
- Owner: bramp
- License: bsd-2-clause
- Created: 2026-03-17T01:17:22.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-24T12:58:01.000Z (3 months ago)
- Last Synced: 2026-04-08T15:42:43.528Z (3 months ago)
- Language: Dart
- Size: 32.9 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Apples (Working Title: Judgy)
An Apples to Apples inspired multiplayer card game built with Flutter and Firebase, featuring AI bot personalities.
## Project Structure
This repository is structured as a monorepo containing the main game application, shared game data, artwork, and documentation.
### Rough Layout
* **`apps/judgy/`**: The main Flutter game application codebase. It includes the application UI, state management, game logic, and services (like the AI bot service).
* **`artwork/`**: Visual assets, designs, and game artwork.
* **`data/`**: Raw game data in CSV format (e.g., `adjectives.csv` and `nouns.csv` for the game cards).
* **`docs/`**: Project documentation, such as `characters.md` detailing the AI bot personalities.
* **`AGENTS.md`**: Rules and instructions for AI coding agents working within this repository.
* **`DESIGN.md`**: Architecture and game design decisions.
* **`TODO.md`**: Master list of planned features, bugs, and tasks.
## Getting Started
To run the main application:
```bash
cd apps/judgy
flutter pub get
flutter run
```
For more specific details on setting up native platforms and Firebase configurations, see the app-specific README at [`apps/judgy/README.md`](apps/judgy/README.md).