# Checkout Service This service provides checkout services for the application. ## Local Build To build the service binary, run: ```sh go build -o /go/bin/checkoutservice/ ``` ## Docker Build From the root directory, run: ```sh docker compose build checkoutservice ``` ## Regenerate protos > **Note** > [`protoc`](https://grpc.io/docs/protoc-installation/) is required. To regenerate gRPC code run: ```sh go generate ``` ## Bump dependencies To bump all dependencies run: ```sh go get -u -t ./... go mod tidy ```