├── .gitignore ├── Procfile ├── README.md ├── app.json ├── app ├── Module.scala ├── controllers │ └── HomeController.scala ├── services │ └── Kafka.scala ├── views │ └── index.scala.html └── workers │ └── RandomNumbers.scala ├── conf ├── application.conf ├── logback.xml └── routes ├── project ├── build.properties └── plugins.sbt ├── sbt ├── sbt-launch.jar └── sbt.cmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/app.json -------------------------------------------------------------------------------- /app/Module.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/app/Module.scala -------------------------------------------------------------------------------- /app/controllers/HomeController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/app/controllers/HomeController.scala -------------------------------------------------------------------------------- /app/services/Kafka.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/app/services/Kafka.scala -------------------------------------------------------------------------------- /app/views/index.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/app/views/index.scala.html -------------------------------------------------------------------------------- /app/workers/RandomNumbers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/app/workers/RandomNumbers.scala -------------------------------------------------------------------------------- /conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/conf/application.conf -------------------------------------------------------------------------------- /conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/conf/logback.xml -------------------------------------------------------------------------------- /conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/conf/routes -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.1.1 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/sbt -------------------------------------------------------------------------------- /sbt-launch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/sbt-launch.jar -------------------------------------------------------------------------------- /sbt.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesward/hello-play-kafka/HEAD/sbt.cmd --------------------------------------------------------------------------------