A fast-paced browser game that puts a twist on classic casino roulette.
Inspired by the intensity of speed chess, Speed Roulette puts an interesting twist on the beloved high-stakes casino game. Players start with 20 dollars, 10 possible spins, and just 60 seconds on the clock. When bets are submitted, the winning number is revealed, earnings are paid out, and the clock starts ticking again 2.5 seconds later. Compete for a spot on the daily leaderboard by making quick decisions, taking bold risks, and hitting big payouts.
- Docker installed and running
- Docker Compose (v2 recommended)
git clone https://github.com/JManion32/speed-roulette.git
cd speed-rouletteCreate a .env file in the root directory:
ENV=development
BUILD_MODE=devserver
FRONTEND_PORT=5173
CORS_ORIGIN=http://localhost:5173
# PostgreSQL
POSTGRES_USERNAME=user
POSTGRES_PASSWORD=pass
POSTGRES_DB_NAME=speed-roulette
POSTGRES_DB_HOST=db
POSTGRES_DB_PORT=5432
# Redis
REDIS_ADDRESS=redis:6379
REDIS_PASSWORD=
REDIS_DB=0docker compose up --build