Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 842 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 842 Bytes

learnKafka

Experiment with python and apache kafka.

project structure based in django cookiecutter

Run the project with docker compose

Build containers

docker-compose -f local.yml build

Run composer

docker-compose -f local.yml up -d

Create an administration user

docker-compose -f local.yml exec django python manage.py createsuperuser

Create topic

docker-compose -f local.yml exec broker kafka-topics --create --topic backend-user --bootstrap-server broker:9092 --replication-factor 1 --partitions 3

System url localhost

More information about Confluent Platform