├── compose.yaml ├── db-service ├── .env ├── Dockerfile ├── README.md ├── db_service │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── main.cpython-312.pyc │ │ └── setting.cpython-312.pyc │ ├── main.py │ ├── setting.py │ ├── todo.proto │ └── todo_pb2.py ├── poetry.lock ├── pyproject.toml └── tests │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-312.pyc │ └── test_main.cpython-312-pytest-8.1.1.pyc │ └── test_main.py └── todo_service ├── .env ├── Dockerfile ├── README.md ├── poetry.lock ├── pyproject.toml ├── tests └── __init__.py └── todo ├── __init__.py ├── main.py ├── setting.py ├── todo.proto └── todo_pb2.py /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/compose.yaml -------------------------------------------------------------------------------- /db-service/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/.env -------------------------------------------------------------------------------- /db-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/Dockerfile -------------------------------------------------------------------------------- /db-service/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db-service/db_service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db-service/db_service/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/db_service/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /db-service/db_service/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/db_service/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /db-service/db_service/__pycache__/setting.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/db_service/__pycache__/setting.cpython-312.pyc -------------------------------------------------------------------------------- /db-service/db_service/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/db_service/main.py -------------------------------------------------------------------------------- /db-service/db_service/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/db_service/setting.py -------------------------------------------------------------------------------- /db-service/db_service/todo.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | 4 | message Todo { 5 | string content = 1; 6 | } -------------------------------------------------------------------------------- /db-service/db_service/todo_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/db_service/todo_pb2.py -------------------------------------------------------------------------------- /db-service/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/poetry.lock -------------------------------------------------------------------------------- /db-service/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/pyproject.toml -------------------------------------------------------------------------------- /db-service/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db-service/tests/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/tests/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /db-service/tests/__pycache__/test_main.cpython-312-pytest-8.1.1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/tests/__pycache__/test_main.cpython-312-pytest-8.1.1.pyc -------------------------------------------------------------------------------- /db-service/tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/db-service/tests/test_main.py -------------------------------------------------------------------------------- /todo_service/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/todo_service/.env -------------------------------------------------------------------------------- /todo_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/todo_service/Dockerfile -------------------------------------------------------------------------------- /todo_service/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo_service/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/todo_service/poetry.lock -------------------------------------------------------------------------------- /todo_service/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/todo_service/pyproject.toml -------------------------------------------------------------------------------- /todo_service/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo_service/todo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo_service/todo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/todo_service/todo/main.py -------------------------------------------------------------------------------- /todo_service/todo/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/todo_service/todo/setting.py -------------------------------------------------------------------------------- /todo_service/todo/todo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/todo_service/todo/todo.proto -------------------------------------------------------------------------------- /todo_service/todo/todo_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rehan-Ul-Haq/Kafka-Product-Service-Example/HEAD/todo_service/todo/todo_pb2.py --------------------------------------------------------------------------------