Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 428 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 428 Bytes

Chat App with Go and React

TODO

  • Ability to add dynamic ports config
  • Add proxy to frontend

Running

Docker

docker-compose up

Frontend(React) will be accessible at: http://localhost:80/

Backend(Go) will be accessible at: http://localhost:8000/

Developing

Backend

cd backend
go mod download
go run main.go

Frontend

cd frontend
npm install
npm start