A web application that replaces physical poker chips with digital stack management. Play home poker games without the need for real chips.
- Digital stack tracking and pot management
- Real-time game state updates
- Hand strength analyzer and poker hand rankings guide
- Multi-player support with room codes
- Automatic cleanup of inactive games
- Next.js 15
- Supabase (PostgreSQL, Auth, Realtime)
- TypeScript
- Tailwind CSS
- shadcn/ui
# Install dependencies
pnpm install
# Start Supabase locally
supabase start
# Start development server
pnpm run devCreate .env.local:
NEXT_PUBLIC_SUPABASE_URL=your_supabase_url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_anon_key# Run migrations
supabase db push
# Reset database (development only)
supabase db reset