Table of Contents
I am trying to practice creating backend services in Golang so I took the idea of writing a book server from freeCodeCamp.org's example. I made major tweaks to it, albeit it started out the same. I hope to continually add to this and extend the book server's functionality
A simple Golang server for books where you can create, retrieve, update, and delete books.
- Clone the repo
git clone https://github.com/danyeric123/go-bookserver.git
- Create a
.envfile with the following variables:POSTGRES_USER=postgres POSTGRES_PASSWORD=postgres POSTGRES_DB=postgres - Run the docker containers
docker compose up

