├── .gitignore ├── README.md ├── broker └── docker-compose.yml ├── catalog_service ├── .gitignore ├── Makefile ├── jest.config.ts ├── package.json ├── prisma │ ├── migrations │ │ ├── 20240114124334_init │ │ │ └── migration.sql │ │ └── migration_lock.toml │ └── schema.prisma ├── request.http ├── src │ ├── .DS_Store │ ├── api │ │ ├── __test__ │ │ │ └── catalog.routes.test.ts │ │ └── catalog.routes.ts │ ├── dto │ │ └── product.dto.ts │ ├── expressApp.ts │ ├── interface │ │ └── catalogRepository.interface.ts │ ├── models │ │ └── product.model.ts │ ├── repository │ │ ├── catalog.repository.ts │ │ └── mockCatalog.repository.ts │ ├── server.ts │ ├── services │ │ ├── __test__ │ │ │ └── catalog.service.test.ts │ │ └── catalog.service.ts │ └── utils │ │ ├── error │ │ ├── errors.ts │ │ ├── handler.ts │ │ ├── index.ts │ │ ├── status-codes.ts │ │ └── validator.ts │ │ ├── fixtures │ │ └── index.ts │ │ ├── index.ts │ │ ├── logger │ │ └── index.ts │ │ └── requestValidator.ts ├── tsconfig.json └── yarn.lock ├── db └── docker-compose.yml ├── episode_12_13_14.zip ├── episode_15_17.zip ├── episode_18_19_auth_service.zip ├── episode_2.zip ├── episode_20-to-22.zip ├── episode_3.zip ├── episode_4.zip ├── episode_5.zip ├── episode_9.zip ├── episode_till_28.zip ├── kafka_es_ms.code-workspace ├── order_service ├── .env ├── drizzle.config.ts ├── jest.config.ts ├── migration.ts ├── package.json ├── requests.http ├── src │ ├── config │ │ └── index.ts │ ├── db │ │ ├── db.connection.ts │ │ ├── migrations │ │ │ ├── 0000_futuristic_dormammu.sql │ │ │ └── meta │ │ │ │ ├── 0000_snapshot.json │ │ │ │ └── _journal.json │ │ └── schema │ │ │ ├── cart.ts │ │ │ ├── index.ts │ │ │ └── order.ts │ ├── dto │ │ ├── User.Model.ts │ │ ├── cartRequest.dto.ts │ │ ├── orderRequest.dto.ts │ │ └── product.dto.ts │ ├── express-app.ts │ ├── repository │ │ ├── cart.repository.ts │ │ └── order.repository.ts │ ├── routes │ │ ├── cart.routes.ts │ │ ├── middleware.ts │ │ └── order.routes.ts │ ├── server.ts │ ├── service │ │ ├── broker.service.ts │ │ ├── cart.service.test.ts │ │ ├── cart.service.ts │ │ └── order.service.ts │ ├── types │ │ ├── index.ts │ │ ├── order.types.ts │ │ └── subscription.type.ts │ └── utils │ │ ├── broker │ │ ├── api.ts │ │ ├── broker.type.ts │ │ ├── index.ts │ │ └── message-broker.ts │ │ ├── error │ │ ├── errors.ts │ │ ├── handler.ts │ │ ├── index.ts │ │ ├── status-codes.ts │ │ └── validator.ts │ │ ├── index.ts │ │ ├── logger │ │ └── index.ts │ │ └── validator.ts ├── tsconfig.json └── yarn.lock ├── payment-app.zip └── user_service ├── .env ├── app.js ├── config └── db.js ├── db.sql ├── package.json ├── routes └── authRoutes.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | coverage 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/README.md -------------------------------------------------------------------------------- /broker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/broker/docker-compose.yml -------------------------------------------------------------------------------- /catalog_service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/.gitignore -------------------------------------------------------------------------------- /catalog_service/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/Makefile -------------------------------------------------------------------------------- /catalog_service/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/jest.config.ts -------------------------------------------------------------------------------- /catalog_service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/package.json -------------------------------------------------------------------------------- /catalog_service/prisma/migrations/20240114124334_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/prisma/migrations/20240114124334_init/migration.sql -------------------------------------------------------------------------------- /catalog_service/prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /catalog_service/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/prisma/schema.prisma -------------------------------------------------------------------------------- /catalog_service/request.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/request.http -------------------------------------------------------------------------------- /catalog_service/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/.DS_Store -------------------------------------------------------------------------------- /catalog_service/src/api/__test__/catalog.routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/api/__test__/catalog.routes.test.ts -------------------------------------------------------------------------------- /catalog_service/src/api/catalog.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/api/catalog.routes.ts -------------------------------------------------------------------------------- /catalog_service/src/dto/product.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/dto/product.dto.ts -------------------------------------------------------------------------------- /catalog_service/src/expressApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/expressApp.ts -------------------------------------------------------------------------------- /catalog_service/src/interface/catalogRepository.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/interface/catalogRepository.interface.ts -------------------------------------------------------------------------------- /catalog_service/src/models/product.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/models/product.model.ts -------------------------------------------------------------------------------- /catalog_service/src/repository/catalog.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/repository/catalog.repository.ts -------------------------------------------------------------------------------- /catalog_service/src/repository/mockCatalog.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/repository/mockCatalog.repository.ts -------------------------------------------------------------------------------- /catalog_service/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/server.ts -------------------------------------------------------------------------------- /catalog_service/src/services/__test__/catalog.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/services/__test__/catalog.service.test.ts -------------------------------------------------------------------------------- /catalog_service/src/services/catalog.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/services/catalog.service.ts -------------------------------------------------------------------------------- /catalog_service/src/utils/error/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/utils/error/errors.ts -------------------------------------------------------------------------------- /catalog_service/src/utils/error/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/utils/error/handler.ts -------------------------------------------------------------------------------- /catalog_service/src/utils/error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/utils/error/index.ts -------------------------------------------------------------------------------- /catalog_service/src/utils/error/status-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/utils/error/status-codes.ts -------------------------------------------------------------------------------- /catalog_service/src/utils/error/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/utils/error/validator.ts -------------------------------------------------------------------------------- /catalog_service/src/utils/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/utils/fixtures/index.ts -------------------------------------------------------------------------------- /catalog_service/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/utils/index.ts -------------------------------------------------------------------------------- /catalog_service/src/utils/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/utils/logger/index.ts -------------------------------------------------------------------------------- /catalog_service/src/utils/requestValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/src/utils/requestValidator.ts -------------------------------------------------------------------------------- /catalog_service/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/tsconfig.json -------------------------------------------------------------------------------- /catalog_service/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/catalog_service/yarn.lock -------------------------------------------------------------------------------- /db/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/db/docker-compose.yml -------------------------------------------------------------------------------- /episode_12_13_14.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/episode_12_13_14.zip -------------------------------------------------------------------------------- /episode_15_17.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/episode_15_17.zip -------------------------------------------------------------------------------- /episode_18_19_auth_service.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/episode_18_19_auth_service.zip -------------------------------------------------------------------------------- /episode_2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/episode_2.zip -------------------------------------------------------------------------------- /episode_20-to-22.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/episode_20-to-22.zip -------------------------------------------------------------------------------- /episode_3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/episode_3.zip -------------------------------------------------------------------------------- /episode_4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/episode_4.zip -------------------------------------------------------------------------------- /episode_5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/episode_5.zip -------------------------------------------------------------------------------- /episode_9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/episode_9.zip -------------------------------------------------------------------------------- /episode_till_28.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/episode_till_28.zip -------------------------------------------------------------------------------- /kafka_es_ms.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/kafka_es_ms.code-workspace -------------------------------------------------------------------------------- /order_service/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/.env -------------------------------------------------------------------------------- /order_service/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/drizzle.config.ts -------------------------------------------------------------------------------- /order_service/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/jest.config.ts -------------------------------------------------------------------------------- /order_service/migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/migration.ts -------------------------------------------------------------------------------- /order_service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/package.json -------------------------------------------------------------------------------- /order_service/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/requests.http -------------------------------------------------------------------------------- /order_service/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/config/index.ts -------------------------------------------------------------------------------- /order_service/src/db/db.connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/db/db.connection.ts -------------------------------------------------------------------------------- /order_service/src/db/migrations/0000_futuristic_dormammu.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/db/migrations/0000_futuristic_dormammu.sql -------------------------------------------------------------------------------- /order_service/src/db/migrations/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/db/migrations/meta/0000_snapshot.json -------------------------------------------------------------------------------- /order_service/src/db/migrations/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/db/migrations/meta/_journal.json -------------------------------------------------------------------------------- /order_service/src/db/schema/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/db/schema/cart.ts -------------------------------------------------------------------------------- /order_service/src/db/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/db/schema/index.ts -------------------------------------------------------------------------------- /order_service/src/db/schema/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/db/schema/order.ts -------------------------------------------------------------------------------- /order_service/src/dto/User.Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/dto/User.Model.ts -------------------------------------------------------------------------------- /order_service/src/dto/cartRequest.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/dto/cartRequest.dto.ts -------------------------------------------------------------------------------- /order_service/src/dto/orderRequest.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/dto/orderRequest.dto.ts -------------------------------------------------------------------------------- /order_service/src/dto/product.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/dto/product.dto.ts -------------------------------------------------------------------------------- /order_service/src/express-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/express-app.ts -------------------------------------------------------------------------------- /order_service/src/repository/cart.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/repository/cart.repository.ts -------------------------------------------------------------------------------- /order_service/src/repository/order.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/repository/order.repository.ts -------------------------------------------------------------------------------- /order_service/src/routes/cart.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/routes/cart.routes.ts -------------------------------------------------------------------------------- /order_service/src/routes/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/routes/middleware.ts -------------------------------------------------------------------------------- /order_service/src/routes/order.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/routes/order.routes.ts -------------------------------------------------------------------------------- /order_service/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/server.ts -------------------------------------------------------------------------------- /order_service/src/service/broker.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/service/broker.service.ts -------------------------------------------------------------------------------- /order_service/src/service/cart.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/service/cart.service.test.ts -------------------------------------------------------------------------------- /order_service/src/service/cart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/service/cart.service.ts -------------------------------------------------------------------------------- /order_service/src/service/order.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/service/order.service.ts -------------------------------------------------------------------------------- /order_service/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/types/index.ts -------------------------------------------------------------------------------- /order_service/src/types/order.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/types/order.types.ts -------------------------------------------------------------------------------- /order_service/src/types/subscription.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/types/subscription.type.ts -------------------------------------------------------------------------------- /order_service/src/utils/broker/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/utils/broker/api.ts -------------------------------------------------------------------------------- /order_service/src/utils/broker/broker.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/utils/broker/broker.type.ts -------------------------------------------------------------------------------- /order_service/src/utils/broker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/utils/broker/index.ts -------------------------------------------------------------------------------- /order_service/src/utils/broker/message-broker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/utils/broker/message-broker.ts -------------------------------------------------------------------------------- /order_service/src/utils/error/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/utils/error/errors.ts -------------------------------------------------------------------------------- /order_service/src/utils/error/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/utils/error/handler.ts -------------------------------------------------------------------------------- /order_service/src/utils/error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/utils/error/index.ts -------------------------------------------------------------------------------- /order_service/src/utils/error/status-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/utils/error/status-codes.ts -------------------------------------------------------------------------------- /order_service/src/utils/error/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/utils/error/validator.ts -------------------------------------------------------------------------------- /order_service/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/utils/index.ts -------------------------------------------------------------------------------- /order_service/src/utils/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/utils/logger/index.ts -------------------------------------------------------------------------------- /order_service/src/utils/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/src/utils/validator.ts -------------------------------------------------------------------------------- /order_service/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/tsconfig.json -------------------------------------------------------------------------------- /order_service/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/order_service/yarn.lock -------------------------------------------------------------------------------- /payment-app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/payment-app.zip -------------------------------------------------------------------------------- /user_service/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/user_service/.env -------------------------------------------------------------------------------- /user_service/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/user_service/app.js -------------------------------------------------------------------------------- /user_service/config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/user_service/config/db.js -------------------------------------------------------------------------------- /user_service/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/user_service/db.sql -------------------------------------------------------------------------------- /user_service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/user_service/package.json -------------------------------------------------------------------------------- /user_service/routes/authRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/user_service/routes/authRoutes.js -------------------------------------------------------------------------------- /user_service/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codergogoi/kafka_elastic_search_ms/HEAD/user_service/yarn.lock --------------------------------------------------------------------------------