chore: initial commit

This commit is contained in:
2024-04-16 22:27:52 +01:00
commit 531b5dabe2
194 changed files with 27071 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
INIT_SVC_NAME=auth
INIT_MIGRATIONS=true
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=auth-service-postgres
PG_PORT=5432

View File

@@ -0,0 +1,13 @@
MODE=dev
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=auth-service-postgres
PG_PORT=5432
KAFKA_BROKERS=kafka:19092
OTEL_COLLECTOR_GRPC=otel-collector:4317
# base64 encoded EC256/EC512 private key
AUTH_PRIVATE_KEY=LS0tLS1CRUdJTiBFQyBQUklWQVRFIEtFWS0tLS0tCk1IY0NBUUVFSUJ5RHBLV1pHS3YxNDdvZGlUR2N4V0l0NWxEbEtRQW5zdDZQQkw3bUNGMFJvQW9HQ0NxR1NNNDkKQXdFSG9VUURRZ0FFbUM0UVdtek1ta3lkT0xMZUxYdHVIa3RqVGtQZzM5djRkSnNFZEhGcGdQM1M0ZXp4a2ZYaApmSVZiQlR6OXA4OFFBSkRsL0ZOVFFjUXFUYlZ2bCsybE9RPT0KLS0tLS1FTkQgRUMgUFJJVkFURSBLRVktLS0tLQ==

View File

@@ -0,0 +1,9 @@
INIT_SVC_NAME=order
INIT_MIGRATIONS=true
INIT_DEBEZIUM_HOST=http://debezium:8083
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=order-service-postgres
PG_PORT=5432

View File

@@ -0,0 +1,10 @@
MODE=dev
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=order-service-postgres
PG_PORT=5432
KAFKA_BROKERS=kafka:19092
OTEL_COLLECTOR_GRPC=otel-collector:4317

View File

@@ -0,0 +1,9 @@
INIT_SVC_NAME=payment
INIT_MIGRATIONS=true
INIT_DEBEZIUM_HOST=http://debezium:8083
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=payment-service-postgres
PG_PORT=5432

View File

@@ -0,0 +1,10 @@
MODE=dev
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=payment-service-postgres
PG_PORT=5432
KAFKA_BROKERS=kafka:19092
OTEL_COLLECTOR_GRPC=otel-collector:4317

View File

@@ -0,0 +1,9 @@
INIT_SVC_NAME=product
INIT_MIGRATIONS=true
INIT_DEBEZIUM_HOST=http://debezium:8083
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=product-service-postgres
PG_PORT=5432

View File

@@ -0,0 +1,10 @@
MODE=dev
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=product-service-postgres
PG_PORT=5432
KAFKA_BROKERS=kafka:19092
OTEL_COLLECTOR_GRPC=otel-collector:4317

View File

@@ -0,0 +1,9 @@
INIT_SVC_NAME=shipping
INIT_MIGRATIONS=true
INIT_DEBEZIUM_HOST=http://debezium:8083
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=shipping-service-postgres
PG_PORT=5432

View File

@@ -0,0 +1,10 @@
MODE=dev
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=shipping-service-postgres
PG_PORT=5432
KAFKA_BROKERS=kafka:19092
OTEL_COLLECTOR_GRPC=otel-collector:4317

View File

@@ -0,0 +1,9 @@
INIT_SVC_NAME=user
INIT_MIGRATIONS=true
INIT_DEBEZIUM_HOST=http://debezium:8083
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=user-service-postgres
PG_PORT=5432

View File

@@ -0,0 +1,12 @@
MODE=dev
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=user-service-postgres
PG_PORT=5432
KAFKA_BROKERS=kafka:19092
OTEL_COLLECTOR_GRPC=otel-collector:4317
AUTH_SERVICE_GRPC=auth-service:9090

View File

@@ -0,0 +1,9 @@
INIT_SVC_NAME=warehouse
INIT_MIGRATIONS=true
INIT_DEBEZIUM_HOST=http://debezium:8083
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=warehouse-service-postgres
PG_PORT=5432

View File

@@ -0,0 +1,10 @@
MODE=dev
PG_DB=postgres
PG_USER=postgres
PG_PASS=postgres
PG_HOST=warehouse-service-postgres
PG_PORT=5432
KAFKA_BROKERS=kafka:19092
OTEL_COLLECTOR_GRPC=otel-collector:4317