# cart **Repository Path**: wendyRose/cart ## Basic Information - **Project Name**: cart - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-25 - **Last Updated**: 2021-06-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Cart Service This is the Cart service Generated with ``` micro new --namespace=go.micro --type=service cart ``` ## Getting Started - [Configuration](#configuration) - [Dependencies](#dependencies) - [Usage](#usage) ## Configuration - FQDN: go.micro.service.cart - Type: service - Alias: cart ## Dependencies Micro services depend on service discovery. The default is multicast DNS, a zeroconf system. In the event you need a resilient multi-host setup we recommend etcd. ``` # install etcd brew install etcd # run etcd etcd ``` ## Usage A Makefile is included for convenience Build the binary ``` make build ``` Run the service ``` ./cart-service ``` Build a docker image ``` make docker ```