A Realtime Chat Application built using React and Kafka as MessageBroker
Start Zookeeper
zookeeper-server-start .\config\zookeeper.properties
Start Kafka
kafka-server-start .\config\server.properties
Create a Topic
kafka-topics --create --topic kafka-chat --zookeeper localhost:2181 --replication-factor 1 --partitions 1
Start Backend
mvn spring-boot:run
Start Frontend
npm start