This is an app I worked on while trying to learn Golang. Tonnes of optimisation can be done to the code and the front-end could be a lot prettier but that is not the main focus of this project so I will not be working on that.
- Move into the
client/web
directory - Use
npm install
to install all the node packages - Move into the
api
directory - Use
go get .
to get all the go modules
- Use
go run .
inside theapi
directory to start the server - Use
npm start
inside theclient/web
directory to start the React App.
Note: Entry point for the api is main.go
and the entry point for the client is index.js