This is a simple bookshelf application written in golang.
There are two parts of the application:
- api - this is the server side app with various api endpoints. The api is writen in golang.
- web - this is the frontend app that is consuming the api endpoints. The web app is created with Vue.js.
- Run the API
$ make
- Run the web application
$ cd ./web
$ make
Once the docker images are successfully built and the containers are up, the application should be available at the following address:
http://127.0.0.1:3000
$ make test