Skip to content

Latest commit

 

History

History
 
 

checkoutservice

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Checkout Service

This service provides checkout services for the application.

Local Build

To build the service binary, run:

go build -o /go/bin/checkoutservice/

Docker Build

From the root directory, run:

docker compose build checkoutservice

Regenerate protos

Note protoc is required.

To regenerate gRPC code run:

go generate

Bump dependencies

To bump all dependencies run:

go get -u -t ./...
go mod tidy