Add gRPC server implementation and database integration for marketplace and products

This commit is contained in:
2025-05-27 03:41:52 +03:00
parent 008f3df42d
commit b083cccc09
44 changed files with 2182 additions and 1201 deletions

12
.env Normal file
View File

@@ -0,0 +1,12 @@
# Redis
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=ELdhsgqJt5QZUSWKU5vY3D9CXa1a0teIceeHqvCtoPkrDJ0Lge7XIe8187gFjd0qZLv9zwhGr62MqY
# PostgreSQL
POSTGRES_LOGIN=postgres
POSTGRES_PASSWORD=GjitkeYf%5Beq
POSTGRES_PORT=5432
POSTGRES_DATABASE=sipro
POSTGRES_HOST=localhost
POSTGRES_URL="postgresql://${POSTGRES_LOGIN}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DATABASE}"