A really good idea for start with unit and integration testing
Please change your database connection in .env
file
That file is used for integration tests and running the app
Run all tests with coverage
go test ./... --cover
Run application in localhost
go run main.go
Build your application and run it
go build main.go
./main
Build your docker image
docker build -t efficient-api .