Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 659 Bytes

README.md

File metadata and controls

30 lines (25 loc) · 659 Bytes

tuiirc

tuiirc (pronounced twerk) is a terminal user interface internet relay chat written in Go

To build the project you need Bazel
25/03/2023 -> NOT USING BAZEL FOR NOW, NEED TO FIGURE OUT HOW TO SET IT UP PROPERLY FIRST You can build the client with

$ bazel build //tuiirc-client:client

To run the project use

$ bazel run //tuiirc-client:client

To build the server

$ bazel build //tuiirc-server:server

To run the server

$ bazel run //tuiirc-server:server

Instead of using bazel, just use go to run client

$ cd tuiirc-client
$ go run client.go