CSCI-343 Group Project
Created by Gabe & Bryant
This is a multiplayer minesweeper game using Go and Gin. It is a web application that allows multiple users to play a game of minesweeper.
Make sure you have Go installed on your system. You can download Go from here. You must download go version 1.21 or higher.
Step 1
Clone the repository
git clone https://github.com/Guuzzeji/go-minesweeper-multiplayer.git
Step 2
Open the project directory and run to install dependencies
go get ./...
Step 3
Then run
go run main.go
or
make go-run
to start the server. You can also run
make build-run
to run it locally as a static binary. If you use make build-run
, make sure to do
make build-local
first to build the server for your machine.
Step 4
Go to
http://localhost:8080
to play the game
This project is licensed under the MIT License - see the LICENSE file for details