├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── api-gateway └── index.js ├── delivery-service └── index.js ├── development.Dockerfile ├── docker-compose.prod.yml ├── docker-compose.yml ├── food.json ├── order-service └── index.js ├── package.json ├── restaurants-service └── index.js └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/README.md -------------------------------------------------------------------------------- /api-gateway/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/api-gateway/index.js -------------------------------------------------------------------------------- /delivery-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/delivery-service/index.js -------------------------------------------------------------------------------- /development.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/development.Dockerfile -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/food.json -------------------------------------------------------------------------------- /order-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/order-service/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/package.json -------------------------------------------------------------------------------- /restaurants-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/restaurants-service/index.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashersw/microservices-workshop/HEAD/test.js --------------------------------------------------------------------------------