├── LICENSE ├── README.md ├── portal ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── portal.rb └── public │ └── index.html ├── service-discovery-blog-template ├── stock-price ├── Dockerfile ├── Gemfile ├── Gemfile.lock └── stocks.rb └── weather ├── Dockerfile ├── Gemfile ├── Gemfile.lock └── weather.rb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/README.md -------------------------------------------------------------------------------- /portal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/portal/Dockerfile -------------------------------------------------------------------------------- /portal/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'sinatra' 3 | -------------------------------------------------------------------------------- /portal/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/portal/Gemfile.lock -------------------------------------------------------------------------------- /portal/portal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/portal/portal.rb -------------------------------------------------------------------------------- /portal/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/portal/public/index.html -------------------------------------------------------------------------------- /service-discovery-blog-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/service-discovery-blog-template -------------------------------------------------------------------------------- /stock-price/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/stock-price/Dockerfile -------------------------------------------------------------------------------- /stock-price/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'sinatra' 3 | -------------------------------------------------------------------------------- /stock-price/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/stock-price/Gemfile.lock -------------------------------------------------------------------------------- /stock-price/stocks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/stock-price/stocks.rb -------------------------------------------------------------------------------- /weather/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/weather/Dockerfile -------------------------------------------------------------------------------- /weather/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'sinatra' 3 | -------------------------------------------------------------------------------- /weather/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/weather/Gemfile.lock -------------------------------------------------------------------------------- /weather/weather.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/service-discovery-ecs-consul/HEAD/weather/weather.rb --------------------------------------------------------------------------------