An infinite board online multiplayer tic tac toe game directly in your terminal.
(Coming soon)
go install github.com/sokmontrey/TicTacToeTuiOnline/cmd/client@latest
Run:
client
git clone https://github.com/sokmontrey/TicTacToeTuiOnline.git
cd TicTacToeTuiOnline
Build (go 1.23.3 required):
cd cmd/client
go build -o client_game
Run:
./client_game
Or Run directly:
go run cmd/client/main.go
By default, the client will connect to the server at tictactoetuionline.onrender.com
.
Build (go 1.23.3 required):
cd cmd/server
go build -o server
Run:
./server
Or Run directly:
go run cmd/server/main.go
Edit the serverAddr
constant in cmd/client/main.go
without the protocol prefix.
Example:
//...
const (
serverAddr = "localhost:8080"
)
//...