Shopping App - Shopping API developed with golang std lib.
There are 2 ways to run the app :
$ git clone https://github.com/funukonta/shopping
$ cd shopping/cmd/
$ docker run --name shopping -e POSTGRES_PASSWORD=shopping -p 5432:5432 -d postgres && sleep 2 && docker exec -it shopping psql -U postgres -d postgres -c "CREATE DATABASE shoppingdb;"
$ go run .or using docker compose
$ git clone https://github.com/funukonta/shopping
$ cd shopping/
$ docker compose up -dThere's postman exported file, you can import to your own postman and test the enpoints.
