├── README.md ├── docker-compose.yml └── kafka_app ├── consumer ├── .dockerignore ├── Dockerfile ├── app │ ├── __init__.py │ ├── config.py │ └── main.py ├── entrypoint.sh └── requirements.txt └── producer ├── .dockerignore ├── Dockerfile ├── app ├── __init__.py ├── config.py └── main.py ├── entrypoint.sh ├── pyproject.toml ├── requirements.txt └── setup.cfg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /kafka_app/consumer/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/kafka_app/consumer/.dockerignore -------------------------------------------------------------------------------- /kafka_app/consumer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/kafka_app/consumer/Dockerfile -------------------------------------------------------------------------------- /kafka_app/consumer/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kafka_app/consumer/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/kafka_app/consumer/app/config.py -------------------------------------------------------------------------------- /kafka_app/consumer/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/kafka_app/consumer/app/main.py -------------------------------------------------------------------------------- /kafka_app/consumer/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/kafka_app/consumer/entrypoint.sh -------------------------------------------------------------------------------- /kafka_app/consumer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/kafka_app/consumer/requirements.txt -------------------------------------------------------------------------------- /kafka_app/producer/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/kafka_app/producer/.dockerignore -------------------------------------------------------------------------------- /kafka_app/producer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/kafka_app/producer/Dockerfile -------------------------------------------------------------------------------- /kafka_app/producer/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kafka_app/producer/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/kafka_app/producer/app/config.py -------------------------------------------------------------------------------- /kafka_app/producer/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/kafka_app/producer/app/main.py -------------------------------------------------------------------------------- /kafka_app/producer/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/kafka_app/producer/entrypoint.sh -------------------------------------------------------------------------------- /kafka_app/producer/pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 120 3 | -------------------------------------------------------------------------------- /kafka_app/producer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavriloviciEduard/fastapi-kafka/HEAD/kafka_app/producer/requirements.txt -------------------------------------------------------------------------------- /kafka_app/producer/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | extend-ignore = E203, CF009 4 | --------------------------------------------------------------------------------