To run the app locally you'll need to have installed Go >= 1.19 and NodeJS >= 18.19
- Download the repo
git clone https://github.com/KerbsOD/GoChat.git
cd GoChat
- Run the frontend
cd Frontend/
npm install
npm run build
npm start
- Run the backend
cd Backend/
go mod tidy
go run main.go
- Open the page
Normally the frontend will automatically open the page. If not, you can access it by going to http://localhost:3000
sudo docker-compose up --build --force-recreate --no-deps