├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── example-1 ├── Dockerfile ├── README.MD ├── package-lock.json ├── package.json ├── src │ └── index.js └── videos │ └── SampleVideo_1280x720_1mb.mp4 └── scripts └── provision-dev-vm.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-3/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | ubuntu-xenial-16.04-cloudimg-console.log 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-3/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-3/HEAD/Vagrantfile -------------------------------------------------------------------------------- /example-1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-3/HEAD/example-1/Dockerfile -------------------------------------------------------------------------------- /example-1/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-3/HEAD/example-1/README.MD -------------------------------------------------------------------------------- /example-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-3/HEAD/example-1/package-lock.json -------------------------------------------------------------------------------- /example-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-3/HEAD/example-1/package.json -------------------------------------------------------------------------------- /example-1/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-3/HEAD/example-1/src/index.js -------------------------------------------------------------------------------- /example-1/videos/SampleVideo_1280x720_1mb.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-3/HEAD/example-1/videos/SampleVideo_1280x720_1mb.mp4 -------------------------------------------------------------------------------- /scripts/provision-dev-vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-3/HEAD/scripts/provision-dev-vm.sh --------------------------------------------------------------------------------