├── .gitignore ├── README.md ├── docker-compose.yml ├── notification-service ├── .dockerignore ├── .env.example ├── Dockerfile ├── email.js ├── index.js ├── logger.js ├── package-lock.json └── package.json ├── ui-client ├── .dockerignore ├── Dockerfile ├── index.html ├── index.js └── package.json └── user-service ├── .dockerignore ├── Dockerfile ├── index.js ├── logger.js ├── package-lock.json ├── package.json └── producer.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /notification-service/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /notification-service/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/notification-service/.env.example -------------------------------------------------------------------------------- /notification-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/notification-service/Dockerfile -------------------------------------------------------------------------------- /notification-service/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/notification-service/email.js -------------------------------------------------------------------------------- /notification-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/notification-service/index.js -------------------------------------------------------------------------------- /notification-service/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/notification-service/logger.js -------------------------------------------------------------------------------- /notification-service/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/notification-service/package-lock.json -------------------------------------------------------------------------------- /notification-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/notification-service/package.json -------------------------------------------------------------------------------- /ui-client/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /ui-client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/ui-client/Dockerfile -------------------------------------------------------------------------------- /ui-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/ui-client/index.html -------------------------------------------------------------------------------- /ui-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/ui-client/index.js -------------------------------------------------------------------------------- /ui-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/ui-client/package.json -------------------------------------------------------------------------------- /user-service/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /user-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/user-service/Dockerfile -------------------------------------------------------------------------------- /user-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/user-service/index.js -------------------------------------------------------------------------------- /user-service/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/user-service/logger.js -------------------------------------------------------------------------------- /user-service/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/user-service/package-lock.json -------------------------------------------------------------------------------- /user-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/user-service/package.json -------------------------------------------------------------------------------- /user-service/producer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walez/codeship-kafka-sample/HEAD/user-service/producer.js --------------------------------------------------------------------------------