This commit is contained in:
irylkov
2025-03-21 09:40:42 +03:00
commit bbb7597e17
24 changed files with 457 additions and 0 deletions

8
cart/Makefile Normal file
View File

@@ -0,0 +1,8 @@
BINDIR=${CURDIR}/bin
PACKAGE=route256/cart
bindir:
mkdir -p ${BINDIR}
build: bindir
echo "build cart"

View File

@@ -0,0 +1,19 @@
service:
host: localhost
port: 8080
workers: 5
jaeger:
host: localhost
port: 6831
product_service:
host: product-service
port: 8082
token: testToken
limit: 10
burst: 10
loms_service:
host: localhost
port: 8083

View File

@@ -0,0 +1,19 @@
service:
host: localhost
port: 8080
workers: 5
jaeger:
host: localhost
port: 6831
product_service:
host: localhost
port: 8082
token: testToken
limit: 10
burst: 10
loms_service:
host: localhost
port: 8083

3
cart/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module route256/cart
go 1.23.1