Download

Get ShowMyCards running on your machine.

Docker (recommended)

The quickest way to get started. Runs both the backend and frontend in a single container.

docker run -d \
  --name showmycards \
  -p 3000:3000 \
  -p 3001:3001 \
  -v showmycards-data:/app/data \
  ghcr.io/showmycards/showmycards:latest

Prefer Docker Compose? See the docker-compose.yml in the repository.

From source

Clone the repository and build it yourself. Requires Go and Bun.

git clone https://github.com/showmycards/showmycards.git
cd showmycards
make install
make dev-backend   # terminal 1
make dev-frontend  # terminal 2