Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 1.17 KB

README.md

File metadata and controls

47 lines (35 loc) · 1.17 KB

Webshot Roulette

A fanmade web game based on Buckshot Roulette.

Build badge

Installation

Installation

Docker

git clone https://github.com/tonyd33/webshot-roulette.git
cd webshot-roulette
docker compose up -d

This will start the client on http://localhost:9422 and the server on http://localhost:6707.

Development

git clone https://github.com/tonyd33/webshot-roulette.git
cd webshot-roulette

# Install dependencies
cd shared && npm i && cd -
cd server && npm i && cd -
cd client && npm i && cd -

# In separate terminal windows,
docker run --rm --name redis -p 6379:6379 redis
cd server && PORT=6707 REDIS_HOST=localhost REDIS_PORT=6379 npm run start:dev
cd client && PORT=9422 SERVER_URL=http://localhost:6707 npx next start