A web-based game inspired by the BBC's Only Connect quiz show. Play the connection game with custom puzzles, team scoring, and immersive audio.
- 🎮 Two-Round Gameplay: Connections (Round 1) and Sequences (Round 2)
- 🎨 Custom Puzzle Creator: Build your own puzzles with text, image, and audio hints
- 🔊 Immersive Audio: Background music and sound effects with volume controls
- 👥 Team Scoring: Track scores for two teams
- 💾 Game State Persistence: Resume games using localStorage
- ⏱️ Customizable Timers: Adjust guessing and steal times
- 🎯 Hieroglyphic Tiles: Beautiful visual tile selection system
- React Router v7 - Full-stack React framework with SSR
- TypeScript - Type-safe development
- Tailwind CSS - Modern styling
- Vite - Fast build tool and dev server
- Node.js 20 or higher
- npm (comes with Node.js)
- Clone the repository:
git clone <your-repo-url>
cd onlykonnect_local- Install dependencies:
npm installStart the development server with hot module replacement:
npm run devYour application will be available at http://localhost:5173.
Create a production build:
npm run buildStart the production server:
npm start- Start a New Game: Click "Start" on the home page
- Select Tiles: Choose from 6 hieroglyphic tiles to reveal puzzles
- Round 1 - Connections: Find the connection between 4 clues
- Round 2 - Sequences: Identify the sequence pattern
- Score Points: Correct answers earn points for your team
- Resume Games: Your progress is automatically saved
Access the Game Creator from the home page to:
- Create custom puzzles for all 6 tiles
- Add text, image, or audio hints
- Set team names
- Configure timer settings
- Save puzzles to localStorage
The project includes a Dockerfile for containerized deployment:
# Build the Docker image
docker build -t onlykonnect .
# Run the container
docker run -p 3000:3000 onlykonnectThe containerized application can be deployed to:
- AWS ECS
- Google Cloud Run
- Azure Container Apps
- Digital Ocean App Platform
- Fly.io
- Railway
- Render
- Connect your repository
- Build command:
npm run build - Output directory:
build/client - Deploy!
Deploy the output of npm run build:
├── package.json
├── package-lock.json
├── build/
│ ├── client/ # Static assets
│ └── server/ # Server-side code
Make sure to run npm run start to serve the application.
onlykonnect_local/
├── app/
│ ├── components/ # React components
│ ├── routes/ # Route handlers
│ ├── utils/ # Utility functions
│ └── app.css # Global styles
├── public/
│ └── sounds/ # Audio files
├── Dockerfile # Docker configuration
└── package.json # Dependencies
- Modern browsers with ES6+ support
- localStorage required for game state persistence
- Audio API support for sound effects
Private project - All rights reserved
Built with ❤️ using React Router.