Originally developed by mikebz@ to test out LLM UX (and learn how to create golang micro services with minimal dependencies)
git clone https://github.com/mikebz/ggbook.git
cd ggbook
go mod tidy
This needs to happen before the sample can run.
make migrate
make run
The server will listen on localhost:8080
by default. You can change this by setting the SERVER
and PORT
environment variables.
Thank you to: https://medium.com/@alen.ajam/building-a-simple-chat-app-with-vue-js-462c4a53c6ad for inspiration of how to build a simple chat in VueJS.
VSCode + Volar (and disable Vetur).
TypeScript cannot handle type information for .vue
imports by default, so we replace the tsc
CLI with vue-tsc
for type checking. In editors, we need Volar to make the TypeScript language service aware of .vue
types.
All the front end GUI is in the /html folder and uses VueJS. In order to
compile and run the front end please follow the standard npm
instructions:
npm install
npm run format
npm run dev
npm run dev
npm run build
Lint with ESLint
npm run lint
/
: Returns a welcome message./guests
:GET
: Retrieves a list of all guests.POST
: Creates a new guest entry. Requires a JSON payload withname
andemail
fields.
/guests/{id}
:GET
: Retrieves a specific guest by ID.PUT
: Updates a specific guest by ID. Requires a JSON payload withname
andemail
fields.DELETE
: Deletes a specific guest by ID.
The project includes a Makefile
with targets for running tests and making API calls using curl
.
make test # Run unit tests
make curl_post # Example POST request
make curl_get_all # Example GET request for all guests
make curl_get # Example GET request for a specific guest
make curl_delete # Example DELETE request