- go 1.18
- gin-gonic for routing
- Postgre sql
- gorm for PostgreSQL database access
- testify for unit test
- go modules for package management
- dockerized environment
- Setup docker environment use "docker-compose.yml" to docker-compose up.
- Go to project folder directory and execute
# start docker environment
$ docker-compose up -d --build
# list running services
$ docker-compose ps
# stop all containers
$ docker-compose stop
# remove all containers
$ docker-compose rm
-
Download posgresql from https://www.postgresql.org/download/ and Setup
-
On macos download from https://postgresapp.com
-
If download the server find pg_hba.conf file and change IPv4 and IPv6 connections trust (not scram-sha-256 or md5)
-
Setup postgresql connection variables with local.env file or just setup yours and change parameters inside local.env
POSTGRES_HOST=localhost
POSTGRES_USER=postgres
POSTGRES_DB=DBNAME
POSTGRES_PASSWORD=STRONGPASSWORD
- After installation create DB on postgre with your given "DBNAME" then just go to project directory and execute
$ go run main.go
✨-postgre sql runs automatically on 5432 port ✨ server run on 8080 port
Create mocks : Go to project folder directory and execute
$ go generate ./...
Run Tests : Go to project folder directory and execute
$ go test -v ./pkg/service/...
curl --location --request GET 'http://localhost:8080/users'
curl --location --request GET 'http://localhost:8080/users/1'
- POST http://localhost:8080/users
- body: { "name": "NurcanNew", "email": "NurcanNew@mail.com", "password": "NurcanNew" }
curl --location --request PATCH 'http://localhost:8080/users' \
--header 'Content-Type: application/json' \
--data-raw '{"name":"NurcanNew", "email":"NurcanNew@mail.com", "password":"NurcanNew"}'
- PATCH http://localhost:8080/users/1
- body: { "name": "NurcanNew", "email": "NurcanNew@mail.com", "password": "NurcanNew" }
curl --location --request PATCH 'http://localhost:8080/users/1' \
--header 'Content-Type: application/json' \
--data-raw '{"name":"NurcanNew", "email":"NurcanNew@mail.com", "password":"NurcanNew"}'
curl --location --request DELETE 'http://localhost:8080/users/1' \
Note: Response model showen on below
type RestErr struct {
Message string `json:"message"`
Status int `json:"status"`
Error string `json:"error"`
}