├── .envrc ├── 01-what-is-cf ├── images │ ├── pws-console.png │ └── pws-index.png ├── reveal.json └── slides.md ├── 02-interact-with-cf ├── images │ └── cf-cli-downloads.png ├── reveal.json └── slides.md ├── 03-first-app ├── images │ └── first-app.png ├── reveal.json ├── slides.md ├── web-app │ ├── .bundle │ │ └── config │ ├── .cfignore │ ├── .envrc │ ├── .ruby-version │ ├── Gemfile │ ├── Gemfile.lock │ ├── Procfile │ ├── bin │ │ ├── bundler │ │ ├── rackup │ │ ├── thin │ │ └── tilt │ ├── config.ru │ ├── manifest.yml │ ├── script │ │ └── setup │ └── vendor │ │ └── cache │ │ ├── daemons-1.2.3.gem │ │ ├── eventmachine-1.0.8.gem │ │ ├── rack-1.6.4.gem │ │ ├── rack-protection-1.5.3.gem │ │ ├── sinatra-1.4.6.gem │ │ ├── thin-1.6.4.gem │ │ └── tilt-2.0.1.gem └── worker-app │ ├── manifest.yml │ └── work ├── 04-buildpacks ├── images │ └── index.png ├── reveal.json ├── slides.md └── static-app │ ├── Staticfile │ ├── manifest.yml │ └── public │ ├── LICENSE.txt │ ├── README.txt │ ├── assets │ ├── css │ │ ├── font-awesome.min.css │ │ ├── ie8.css │ │ ├── ie9.css │ │ ├── images │ │ │ ├── bg.jpg │ │ │ ├── ie │ │ │ │ ├── footer.png │ │ │ │ └── footer.svg │ │ │ ├── overlay-pattern.png │ │ │ └── overlay.svg │ │ └── main.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── js │ │ └── ie │ │ │ ├── PIE.htc │ │ │ ├── html5shiv.js │ │ │ └── respond.min.js │ └── sass │ │ ├── ie8.scss │ │ ├── ie9.scss │ │ ├── libs │ │ ├── _functions.scss │ │ ├── _mixins.scss │ │ ├── _skel.scss │ │ └── _vars.scss │ │ └── main.scss │ └── index.html ├── 05-resilience ├── images │ ├── 12factor.png │ ├── crash.png │ ├── fill-disk.png │ ├── fill-memory.png │ └── index.png ├── imperfect-app │ ├── .bundle │ │ └── config │ ├── .cfignore │ ├── .envrc │ ├── .ruby-version │ ├── Gemfile │ ├── Gemfile.lock │ ├── Procfile │ ├── bin │ │ ├── bundler │ │ ├── rackup │ │ ├── thin │ │ └── tilt │ ├── config.ru │ ├── manifest.yml │ ├── script │ │ └── setup │ └── vendor │ │ └── cache │ │ ├── daemons-1.2.3.gem │ │ ├── eventmachine-1.0.8.gem │ │ ├── rack-1.6.4.gem │ │ ├── rack-protection-1.5.3.gem │ │ ├── sinatra-1.4.6.gem │ │ ├── thin-1.6.4.gem │ │ └── tilt-2.0.1.gem ├── reveal.json └── slides.md ├── 06-debugging ├── debug-app │ ├── .bundle │ │ └── config │ ├── .cfignore │ ├── .envrc │ ├── .gitignore │ ├── .ruby-version │ ├── Gemfile │ ├── Gemfile.lock │ ├── Procfile │ ├── bin │ │ ├── bundler │ │ ├── coderay │ │ ├── mongrel_rpm │ │ ├── newrelic │ │ ├── newrelic_cmd │ │ ├── nrdebug │ │ ├── pry │ │ ├── rackup │ │ ├── thin │ │ └── tilt │ ├── config.ru │ ├── manifest.yml │ ├── newrelic.yml │ ├── script │ │ └── setup │ └── vendor │ │ └── cache │ │ ├── daemons-1.2.3.gem │ │ ├── eventmachine-1.0.8.gem │ │ ├── newrelic_rpm-3.13.2.302.gem │ │ ├── rack-1.6.4.gem │ │ ├── rack-protection-1.5.3.gem │ │ ├── sinatra-1.4.6.gem │ │ ├── thin-1.6.4.gem │ │ └── tilt-2.0.1.gem ├── images │ ├── 200-index.png │ ├── 500-index.png │ └── cf-ssh.png ├── reveal.json └── slides.md ├── 07-shared-state ├── images │ ├── alt-index.png │ ├── app-supporters.png │ ├── index.png │ └── new-app-supporters.png ├── rediscups.md ├── reveal.json ├── slides.md └── stateful-app │ ├── .bundle │ └── config │ ├── .cfignore │ ├── .envrc │ ├── .gitignore │ ├── .rspec │ ├── .ruby-version │ ├── Gemfile │ ├── Gemfile.lock │ ├── Guardfile │ ├── Procfile │ ├── bin │ ├── _guard-core │ ├── bundler │ ├── byebug │ ├── coderay │ ├── guard │ ├── htmldiff │ ├── ldiff │ ├── listen │ ├── pry │ ├── rackup │ ├── rspec │ ├── thin │ ├── thor │ └── tilt │ ├── config.ru │ ├── lib │ ├── views │ │ └── index.erb │ └── web.rb │ ├── manifest.yml │ ├── script │ └── setup │ ├── spec │ ├── spec_helper.rb │ └── web_spec.rb │ └── vendor │ └── cache │ ├── byebug-5.0.0.gem │ ├── coderay-1.1.0.gem │ ├── columnize-0.9.0.gem │ ├── daemons-1.2.3.gem │ ├── diff-lcs-1.2.5.gem │ ├── eventmachine-1.0.8.gem │ ├── ffi-1.9.10.gem │ ├── formatador-0.2.5.gem │ ├── guard-2.13.0.gem │ ├── guard-compat-1.2.1.gem │ ├── guard-rspec-4.6.4.gem │ ├── listen-3.0.3.gem │ ├── lumberjack-1.0.9.gem │ ├── method_source-0.8.2.gem │ ├── nenv-0.2.0.gem │ ├── notiffany-0.0.8.gem │ ├── pry-0.10.2.gem │ ├── pry-byebug-3.2.0.gem │ ├── rack-1.6.4.gem │ ├── rack-protection-1.5.3.gem │ ├── rack-test-0.6.3.gem │ ├── rb-fsevent-0.9.6.gem │ ├── rb-inotify-0.9.5.gem │ ├── redis-3.2.1.gem │ ├── redis-namespace-1.5.2.gem │ ├── rspec-3.3.0.gem │ ├── rspec-core-3.3.2.gem │ ├── rspec-expectations-3.3.1.gem │ ├── rspec-mocks-3.3.2.gem │ ├── rspec-support-3.3.0.gem │ ├── shellany-0.0.1.gem │ ├── sinatra-1.4.6.gem │ ├── slop-3.6.0.gem │ ├── thin-1.6.4.gem │ ├── thor-0.19.1.gem │ └── tilt-2.0.1.gem ├── 08-domains-routes ├── cf-hero-static │ ├── .cfignore │ ├── Staticfile │ ├── manifest.yml │ └── public │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── assets │ │ ├── css │ │ │ ├── font-awesome.min.css │ │ │ ├── ie8.css │ │ │ ├── images │ │ │ │ ├── bottom-1280.svg │ │ │ │ ├── bottom-1600.svg │ │ │ │ ├── bottom-3200.svg │ │ │ │ ├── overlay.png │ │ │ │ ├── top-1280.svg │ │ │ │ ├── top-1600.svg │ │ │ │ ├── top-3200.svg │ │ │ │ └── xoverlay.png │ │ │ ├── main.css │ │ │ └── superhero.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── js │ │ │ ├── ie │ │ │ │ ├── PIE.htc │ │ │ │ ├── backgroundsize.min.htc │ │ │ │ ├── html5shiv.js │ │ │ │ └── respond.min.js │ │ │ ├── jquery.min.js │ │ │ ├── main.js │ │ │ ├── skel.min.js │ │ │ └── util.js │ │ └── sass │ │ │ ├── ie8.scss │ │ │ ├── libs │ │ │ ├── _functions.scss │ │ │ ├── _mixins.scss │ │ │ ├── _skel.scss │ │ │ └── _vars.scss │ │ │ └── main.scss │ │ ├── images │ │ ├── header.jpg │ │ ├── pic01.jpg │ │ ├── pic02.jpg │ │ └── pic03.jpg │ │ └── index.html ├── cf-hero │ ├── .bundle │ │ └── config │ ├── .cfignore │ ├── .envrc │ ├── .gitignore │ ├── .rspec │ ├── .ruby-version │ ├── Gemfile │ ├── Gemfile.lock │ ├── Guardfile │ ├── Procfile │ ├── bin │ │ ├── _guard-core │ │ ├── bundler │ │ ├── byebug │ │ ├── coderay │ │ ├── guard │ │ ├── htmldiff │ │ ├── ldiff │ │ ├── listen │ │ ├── pry │ │ ├── rackup │ │ ├── rspec │ │ ├── thin │ │ ├── thor │ │ └── tilt │ ├── config.ru │ ├── lib │ │ ├── extract_name_from_host.rb │ │ ├── public │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ ├── ie8.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bottom-1280.svg │ │ │ │ │ │ ├── bottom-1600.svg │ │ │ │ │ │ ├── bottom-3200.svg │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ ├── top-1280.svg │ │ │ │ │ │ ├── top-1600.svg │ │ │ │ │ │ ├── top-3200.svg │ │ │ │ │ │ └── xoverlay.png │ │ │ │ │ ├── main.css │ │ │ │ │ └── superhero.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── js │ │ │ │ │ ├── ie │ │ │ │ │ │ ├── PIE.htc │ │ │ │ │ │ ├── backgroundsize.min.htc │ │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ │ └── respond.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── skel.min.js │ │ │ │ │ └── util.js │ │ │ │ └── sass │ │ │ │ │ ├── ie8.scss │ │ │ │ │ ├── libs │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _skel.scss │ │ │ │ │ └── _vars.scss │ │ │ │ │ └── main.scss │ │ │ └── images │ │ │ │ ├── header.jpg │ │ │ │ ├── pic01.jpg │ │ │ │ ├── pic02.jpg │ │ │ │ └── pic03.jpg │ │ ├── views │ │ │ └── index.erb │ │ └── web.rb │ ├── manifest-superhero.yml │ ├── manifest.yml │ ├── script │ │ └── setup │ ├── spec │ │ ├── extract_name_from_host_spec.rb │ │ ├── spec_helper.rb │ │ └── web_spec.rb │ └── vendor │ │ └── cache │ │ ├── byebug-5.0.0.gem │ │ ├── coderay-1.1.0.gem │ │ ├── columnize-0.9.0.gem │ │ ├── daemons-1.2.3.gem │ │ ├── diff-lcs-1.2.5.gem │ │ ├── eventmachine-1.0.8.gem │ │ ├── ffi-1.9.10.gem │ │ ├── formatador-0.2.5.gem │ │ ├── guard-2.13.0.gem │ │ ├── guard-compat-1.2.1.gem │ │ ├── guard-rspec-4.6.4.gem │ │ ├── listen-3.0.3.gem │ │ ├── lumberjack-1.0.9.gem │ │ ├── method_source-0.8.2.gem │ │ ├── nenv-0.2.0.gem │ │ ├── notiffany-0.0.8.gem │ │ ├── pry-0.10.2.gem │ │ ├── pry-byebug-3.2.0.gem │ │ ├── rack-1.6.4.gem │ │ ├── rack-protection-1.5.3.gem │ │ ├── rack-test-0.6.3.gem │ │ ├── rb-fsevent-0.9.6.gem │ │ ├── rb-inotify-0.9.5.gem │ │ ├── rspec-3.3.0.gem │ │ ├── rspec-core-3.3.2.gem │ │ ├── rspec-expectations-3.3.1.gem │ │ ├── rspec-mocks-3.3.2.gem │ │ ├── rspec-support-3.3.0.gem │ │ ├── shellany-0.0.1.gem │ │ ├── sinatra-1.4.6.gem │ │ ├── slop-3.6.0.gem │ │ ├── thin-1.6.4.gem │ │ ├── thor-0.19.1.gem │ │ └── tilt-2.0.1.gem ├── images │ ├── cf-hero-static.png │ ├── cf-hero.png │ ├── cf-superhero.png │ ├── cfapps-cf-hero.png │ └── www-cf-hero.png ├── reveal.json └── slides.md ├── README.md ├── bluemix.marketplace.txt ├── copyright.txt ├── live ├── .gitignore ├── Gruntfile.js ├── LICENSE ├── css │ ├── print │ │ ├── paper.css │ │ └── pdf.css │ ├── reveal.css │ ├── reveal.scss │ └── theme │ │ ├── README.md │ │ ├── beige.css │ │ ├── black.css │ │ ├── blood.css │ │ ├── league.css │ │ ├── moon.css │ │ ├── night.css │ │ ├── serif.css │ │ ├── simple.css │ │ ├── sky.css │ │ ├── solarized.css │ │ ├── source │ │ ├── beige.scss │ │ ├── black.scss │ │ ├── blood.scss │ │ ├── league.scss │ │ ├── moon.scss │ │ ├── night.scss │ │ ├── serif.scss │ │ ├── simple.scss │ │ ├── sky.scss │ │ ├── solarized.scss │ │ └── white.scss │ │ ├── template │ │ ├── mixins.scss │ │ ├── settings.scss │ │ └── theme.scss │ │ └── white.css ├── index.html ├── js │ └── reveal.js ├── lib │ ├── css │ │ └── zenburn.css │ ├── font │ │ ├── league-gothic │ │ │ ├── LICENSE │ │ │ ├── league-gothic.css │ │ │ ├── league-gothic.eot │ │ │ ├── league-gothic.ttf │ │ │ └── league-gothic.woff │ │ └── source-sans-pro │ │ │ ├── LICENSE │ │ │ ├── source-sans-pro-italic.eot │ │ │ ├── source-sans-pro-italic.ttf │ │ │ ├── source-sans-pro-italic.woff │ │ │ ├── source-sans-pro-regular.eot │ │ │ ├── source-sans-pro-regular.ttf │ │ │ ├── source-sans-pro-regular.woff │ │ │ ├── source-sans-pro-semibold.eot │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ ├── source-sans-pro-semibold.woff │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ └── source-sans-pro.css │ └── js │ │ ├── classList.js │ │ ├── head.min.js │ │ └── html5shiv.js ├── package.json └── plugin │ ├── highlight │ └── highlight.js │ ├── leap │ └── leap.js │ ├── markdown │ ├── example.html │ ├── example.md │ ├── markdown.js │ └── marked.js │ ├── math │ └── math.js │ ├── multiplex │ ├── client.js │ ├── index.js │ └── master.js │ ├── notes-server │ ├── client.js │ ├── index.js │ └── notes.html │ ├── notes │ ├── notes.html │ └── notes.js │ ├── print-pdf │ └── print-pdf.js │ ├── remotes │ └── remotes.js │ ├── search │ └── search.js │ └── zoom-js │ └── zoom.js ├── pws.marketplace.txt ├── retro.md ├── reveal.json ├── script ├── live ├── run ├── setup └── slides └── slides ├── manifest.yml └── package.json /.envrc: -------------------------------------------------------------------------------- 1 | PATH_add ./script 2 | -------------------------------------------------------------------------------- /01-what-is-cf/images/pws-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/01-what-is-cf/images/pws-console.png -------------------------------------------------------------------------------- /01-what-is-cf/images/pws-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/01-what-is-cf/images/pws-index.png -------------------------------------------------------------------------------- /01-what-is-cf/reveal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/01-what-is-cf/reveal.json -------------------------------------------------------------------------------- /01-what-is-cf/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/01-what-is-cf/slides.md -------------------------------------------------------------------------------- /02-interact-with-cf/images/cf-cli-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/02-interact-with-cf/images/cf-cli-downloads.png -------------------------------------------------------------------------------- /02-interact-with-cf/reveal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/02-interact-with-cf/reveal.json -------------------------------------------------------------------------------- /02-interact-with-cf/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/02-interact-with-cf/slides.md -------------------------------------------------------------------------------- /03-first-app/images/first-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/images/first-app.png -------------------------------------------------------------------------------- /03-first-app/reveal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/reveal.json -------------------------------------------------------------------------------- /03-first-app/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/slides.md -------------------------------------------------------------------------------- /03-first-app/web-app/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_BIN: bin 3 | -------------------------------------------------------------------------------- /03-first-app/web-app/.cfignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | .envrc 3 | 4 | bin 5 | script 6 | vendor 7 | -------------------------------------------------------------------------------- /03-first-app/web-app/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/.envrc -------------------------------------------------------------------------------- /03-first-app/web-app/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.4 2 | -------------------------------------------------------------------------------- /03-first-app/web-app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/Gemfile -------------------------------------------------------------------------------- /03-first-app/web-app/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/Gemfile.lock -------------------------------------------------------------------------------- /03-first-app/web-app/Procfile: -------------------------------------------------------------------------------- 1 | web: rackup -p $PORT 2 | -------------------------------------------------------------------------------- /03-first-app/web-app/bin/bundler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/bin/bundler -------------------------------------------------------------------------------- /03-first-app/web-app/bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/bin/rackup -------------------------------------------------------------------------------- /03-first-app/web-app/bin/thin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/bin/thin -------------------------------------------------------------------------------- /03-first-app/web-app/bin/tilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/bin/tilt -------------------------------------------------------------------------------- /03-first-app/web-app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/config.ru -------------------------------------------------------------------------------- /03-first-app/web-app/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/manifest.yml -------------------------------------------------------------------------------- /03-first-app/web-app/script/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/script/setup -------------------------------------------------------------------------------- /03-first-app/web-app/vendor/cache/daemons-1.2.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/vendor/cache/daemons-1.2.3.gem -------------------------------------------------------------------------------- /03-first-app/web-app/vendor/cache/eventmachine-1.0.8.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/vendor/cache/eventmachine-1.0.8.gem -------------------------------------------------------------------------------- /03-first-app/web-app/vendor/cache/rack-1.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/vendor/cache/rack-1.6.4.gem -------------------------------------------------------------------------------- /03-first-app/web-app/vendor/cache/rack-protection-1.5.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/vendor/cache/rack-protection-1.5.3.gem -------------------------------------------------------------------------------- /03-first-app/web-app/vendor/cache/sinatra-1.4.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/vendor/cache/sinatra-1.4.6.gem -------------------------------------------------------------------------------- /03-first-app/web-app/vendor/cache/thin-1.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/vendor/cache/thin-1.6.4.gem -------------------------------------------------------------------------------- /03-first-app/web-app/vendor/cache/tilt-2.0.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/web-app/vendor/cache/tilt-2.0.1.gem -------------------------------------------------------------------------------- /03-first-app/worker-app/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/worker-app/manifest.yml -------------------------------------------------------------------------------- /03-first-app/worker-app/work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/03-first-app/worker-app/work -------------------------------------------------------------------------------- /04-buildpacks/images/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/images/index.png -------------------------------------------------------------------------------- /04-buildpacks/reveal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/reveal.json -------------------------------------------------------------------------------- /04-buildpacks/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/slides.md -------------------------------------------------------------------------------- /04-buildpacks/static-app/Staticfile: -------------------------------------------------------------------------------- 1 | root: public 2 | -------------------------------------------------------------------------------- /04-buildpacks/static-app/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/manifest.yml -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/LICENSE.txt -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/README.txt -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/css/ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/css/ie8.css -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/css/ie9.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/css/ie9.css -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/css/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/css/images/bg.jpg -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/css/images/ie/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/css/images/ie/footer.png -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/css/images/ie/footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/css/images/ie/footer.svg -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/css/images/overlay-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/css/images/overlay-pattern.png -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/css/images/overlay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/css/images/overlay.svg -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/css/main.css -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/js/ie/PIE.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/js/ie/PIE.htc -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/js/ie/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/js/ie/html5shiv.js -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/js/ie/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/js/ie/respond.min.js -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/sass/ie8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/sass/ie8.scss -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/sass/ie9.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/sass/ie9.scss -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/assets/sass/main.scss -------------------------------------------------------------------------------- /04-buildpacks/static-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/04-buildpacks/static-app/public/index.html -------------------------------------------------------------------------------- /05-resilience/images/12factor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/images/12factor.png -------------------------------------------------------------------------------- /05-resilience/images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/images/crash.png -------------------------------------------------------------------------------- /05-resilience/images/fill-disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/images/fill-disk.png -------------------------------------------------------------------------------- /05-resilience/images/fill-memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/images/fill-memory.png -------------------------------------------------------------------------------- /05-resilience/images/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/images/index.png -------------------------------------------------------------------------------- /05-resilience/imperfect-app/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_BIN: bin 3 | -------------------------------------------------------------------------------- /05-resilience/imperfect-app/.cfignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | .envrc 3 | 4 | bin 5 | script 6 | vendor 7 | -------------------------------------------------------------------------------- /05-resilience/imperfect-app/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/.envrc -------------------------------------------------------------------------------- /05-resilience/imperfect-app/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.2 2 | -------------------------------------------------------------------------------- /05-resilience/imperfect-app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/Gemfile -------------------------------------------------------------------------------- /05-resilience/imperfect-app/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/Gemfile.lock -------------------------------------------------------------------------------- /05-resilience/imperfect-app/Procfile: -------------------------------------------------------------------------------- 1 | web: rackup -p $PORT 2 | -------------------------------------------------------------------------------- /05-resilience/imperfect-app/bin/bundler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/bin/bundler -------------------------------------------------------------------------------- /05-resilience/imperfect-app/bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/bin/rackup -------------------------------------------------------------------------------- /05-resilience/imperfect-app/bin/thin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/bin/thin -------------------------------------------------------------------------------- /05-resilience/imperfect-app/bin/tilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/bin/tilt -------------------------------------------------------------------------------- /05-resilience/imperfect-app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/config.ru -------------------------------------------------------------------------------- /05-resilience/imperfect-app/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/manifest.yml -------------------------------------------------------------------------------- /05-resilience/imperfect-app/script/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/script/setup -------------------------------------------------------------------------------- /05-resilience/imperfect-app/vendor/cache/daemons-1.2.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/vendor/cache/daemons-1.2.3.gem -------------------------------------------------------------------------------- /05-resilience/imperfect-app/vendor/cache/eventmachine-1.0.8.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/vendor/cache/eventmachine-1.0.8.gem -------------------------------------------------------------------------------- /05-resilience/imperfect-app/vendor/cache/rack-1.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/vendor/cache/rack-1.6.4.gem -------------------------------------------------------------------------------- /05-resilience/imperfect-app/vendor/cache/rack-protection-1.5.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/vendor/cache/rack-protection-1.5.3.gem -------------------------------------------------------------------------------- /05-resilience/imperfect-app/vendor/cache/sinatra-1.4.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/vendor/cache/sinatra-1.4.6.gem -------------------------------------------------------------------------------- /05-resilience/imperfect-app/vendor/cache/thin-1.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/vendor/cache/thin-1.6.4.gem -------------------------------------------------------------------------------- /05-resilience/imperfect-app/vendor/cache/tilt-2.0.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/imperfect-app/vendor/cache/tilt-2.0.1.gem -------------------------------------------------------------------------------- /05-resilience/reveal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/reveal.json -------------------------------------------------------------------------------- /05-resilience/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/05-resilience/slides.md -------------------------------------------------------------------------------- /06-debugging/debug-app/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_BIN: bin 3 | -------------------------------------------------------------------------------- /06-debugging/debug-app/.cfignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | .envrc 3 | 4 | bin 5 | script 6 | vendor 7 | -------------------------------------------------------------------------------- /06-debugging/debug-app/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/.envrc -------------------------------------------------------------------------------- /06-debugging/debug-app/.gitignore: -------------------------------------------------------------------------------- 1 | log 2 | -------------------------------------------------------------------------------- /06-debugging/debug-app/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.4 2 | -------------------------------------------------------------------------------- /06-debugging/debug-app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/Gemfile -------------------------------------------------------------------------------- /06-debugging/debug-app/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/Gemfile.lock -------------------------------------------------------------------------------- /06-debugging/debug-app/Procfile: -------------------------------------------------------------------------------- 1 | web: rackup -p $PORT 2 | -------------------------------------------------------------------------------- /06-debugging/debug-app/bin/bundler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/bin/bundler -------------------------------------------------------------------------------- /06-debugging/debug-app/bin/coderay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/bin/coderay -------------------------------------------------------------------------------- /06-debugging/debug-app/bin/mongrel_rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/bin/mongrel_rpm -------------------------------------------------------------------------------- /06-debugging/debug-app/bin/newrelic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/bin/newrelic -------------------------------------------------------------------------------- /06-debugging/debug-app/bin/newrelic_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/bin/newrelic_cmd -------------------------------------------------------------------------------- /06-debugging/debug-app/bin/nrdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/bin/nrdebug -------------------------------------------------------------------------------- /06-debugging/debug-app/bin/pry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/bin/pry -------------------------------------------------------------------------------- /06-debugging/debug-app/bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/bin/rackup -------------------------------------------------------------------------------- /06-debugging/debug-app/bin/thin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/bin/thin -------------------------------------------------------------------------------- /06-debugging/debug-app/bin/tilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/bin/tilt -------------------------------------------------------------------------------- /06-debugging/debug-app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/config.ru -------------------------------------------------------------------------------- /06-debugging/debug-app/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/manifest.yml -------------------------------------------------------------------------------- /06-debugging/debug-app/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/newrelic.yml -------------------------------------------------------------------------------- /06-debugging/debug-app/script/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/script/setup -------------------------------------------------------------------------------- /06-debugging/debug-app/vendor/cache/daemons-1.2.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/vendor/cache/daemons-1.2.3.gem -------------------------------------------------------------------------------- /06-debugging/debug-app/vendor/cache/eventmachine-1.0.8.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/vendor/cache/eventmachine-1.0.8.gem -------------------------------------------------------------------------------- /06-debugging/debug-app/vendor/cache/newrelic_rpm-3.13.2.302.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/vendor/cache/newrelic_rpm-3.13.2.302.gem -------------------------------------------------------------------------------- /06-debugging/debug-app/vendor/cache/rack-1.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/vendor/cache/rack-1.6.4.gem -------------------------------------------------------------------------------- /06-debugging/debug-app/vendor/cache/rack-protection-1.5.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/vendor/cache/rack-protection-1.5.3.gem -------------------------------------------------------------------------------- /06-debugging/debug-app/vendor/cache/sinatra-1.4.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/vendor/cache/sinatra-1.4.6.gem -------------------------------------------------------------------------------- /06-debugging/debug-app/vendor/cache/thin-1.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/vendor/cache/thin-1.6.4.gem -------------------------------------------------------------------------------- /06-debugging/debug-app/vendor/cache/tilt-2.0.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/debug-app/vendor/cache/tilt-2.0.1.gem -------------------------------------------------------------------------------- /06-debugging/images/200-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/images/200-index.png -------------------------------------------------------------------------------- /06-debugging/images/500-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/images/500-index.png -------------------------------------------------------------------------------- /06-debugging/images/cf-ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/images/cf-ssh.png -------------------------------------------------------------------------------- /06-debugging/reveal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/reveal.json -------------------------------------------------------------------------------- /06-debugging/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/06-debugging/slides.md -------------------------------------------------------------------------------- /07-shared-state/images/alt-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/images/alt-index.png -------------------------------------------------------------------------------- /07-shared-state/images/app-supporters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/images/app-supporters.png -------------------------------------------------------------------------------- /07-shared-state/images/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/images/index.png -------------------------------------------------------------------------------- /07-shared-state/images/new-app-supporters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/images/new-app-supporters.png -------------------------------------------------------------------------------- /07-shared-state/rediscups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/rediscups.md -------------------------------------------------------------------------------- /07-shared-state/reveal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/reveal.json -------------------------------------------------------------------------------- /07-shared-state/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/slides.md -------------------------------------------------------------------------------- /07-shared-state/stateful-app/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_BIN: bin 3 | -------------------------------------------------------------------------------- /07-shared-state/stateful-app/.cfignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/.cfignore -------------------------------------------------------------------------------- /07-shared-state/stateful-app/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/.envrc -------------------------------------------------------------------------------- /07-shared-state/stateful-app/.gitignore: -------------------------------------------------------------------------------- 1 | log 2 | newrelic.yml 3 | -------------------------------------------------------------------------------- /07-shared-state/stateful-app/.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/.rspec -------------------------------------------------------------------------------- /07-shared-state/stateful-app/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.4 2 | -------------------------------------------------------------------------------- /07-shared-state/stateful-app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/Gemfile -------------------------------------------------------------------------------- /07-shared-state/stateful-app/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/Gemfile.lock -------------------------------------------------------------------------------- /07-shared-state/stateful-app/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/Guardfile -------------------------------------------------------------------------------- /07-shared-state/stateful-app/Procfile: -------------------------------------------------------------------------------- 1 | web: rackup -p $PORT 2 | -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/_guard-core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/_guard-core -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/bundler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/bundler -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/byebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/byebug -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/coderay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/coderay -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/guard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/guard -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/htmldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/htmldiff -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/ldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/ldiff -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/listen -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/pry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/pry -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/rackup -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/rspec -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/thin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/thin -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/thor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/thor -------------------------------------------------------------------------------- /07-shared-state/stateful-app/bin/tilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/bin/tilt -------------------------------------------------------------------------------- /07-shared-state/stateful-app/config.ru: -------------------------------------------------------------------------------- 1 | require File.expand_path("./lib/web", __dir__) 2 | 3 | run Web.new 4 | -------------------------------------------------------------------------------- /07-shared-state/stateful-app/lib/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/lib/views/index.erb -------------------------------------------------------------------------------- /07-shared-state/stateful-app/lib/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/lib/web.rb -------------------------------------------------------------------------------- /07-shared-state/stateful-app/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/manifest.yml -------------------------------------------------------------------------------- /07-shared-state/stateful-app/script/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/script/setup -------------------------------------------------------------------------------- /07-shared-state/stateful-app/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/spec/spec_helper.rb -------------------------------------------------------------------------------- /07-shared-state/stateful-app/spec/web_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/spec/web_spec.rb -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/byebug-5.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/byebug-5.0.0.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/coderay-1.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/coderay-1.1.0.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/columnize-0.9.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/columnize-0.9.0.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/daemons-1.2.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/daemons-1.2.3.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/diff-lcs-1.2.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/diff-lcs-1.2.5.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/eventmachine-1.0.8.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/eventmachine-1.0.8.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/ffi-1.9.10.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/ffi-1.9.10.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/formatador-0.2.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/formatador-0.2.5.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/guard-2.13.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/guard-2.13.0.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/guard-compat-1.2.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/guard-compat-1.2.1.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/guard-rspec-4.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/guard-rspec-4.6.4.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/listen-3.0.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/listen-3.0.3.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/lumberjack-1.0.9.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/lumberjack-1.0.9.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/method_source-0.8.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/method_source-0.8.2.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/nenv-0.2.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/nenv-0.2.0.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/notiffany-0.0.8.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/notiffany-0.0.8.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/pry-0.10.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/pry-0.10.2.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/pry-byebug-3.2.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/pry-byebug-3.2.0.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/rack-1.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/rack-1.6.4.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/rack-protection-1.5.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/rack-protection-1.5.3.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/rack-test-0.6.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/rack-test-0.6.3.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/rb-fsevent-0.9.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/rb-fsevent-0.9.6.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/rb-inotify-0.9.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/rb-inotify-0.9.5.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/redis-3.2.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/redis-3.2.1.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/redis-namespace-1.5.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/redis-namespace-1.5.2.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/rspec-3.3.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/rspec-3.3.0.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/rspec-core-3.3.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/rspec-core-3.3.2.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/rspec-expectations-3.3.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/rspec-expectations-3.3.1.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/rspec-mocks-3.3.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/rspec-mocks-3.3.2.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/rspec-support-3.3.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/rspec-support-3.3.0.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/shellany-0.0.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/shellany-0.0.1.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/sinatra-1.4.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/sinatra-1.4.6.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/slop-3.6.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/slop-3.6.0.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/thin-1.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/thin-1.6.4.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/thor-0.19.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/thor-0.19.1.gem -------------------------------------------------------------------------------- /07-shared-state/stateful-app/vendor/cache/tilt-2.0.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/07-shared-state/stateful-app/vendor/cache/tilt-2.0.1.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/.cfignore: -------------------------------------------------------------------------------- 1 | .envrc 2 | 3 | script 4 | -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/Staticfile: -------------------------------------------------------------------------------- 1 | root: public 2 | -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/manifest.yml -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/LICENSE.txt -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/README.txt -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/css/ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/css/ie8.css -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/css/images/bottom-1280.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/css/images/bottom-1280.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/css/images/bottom-1600.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/css/images/bottom-1600.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/css/images/bottom-3200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/css/images/bottom-3200.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/css/images/overlay.png -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/css/images/top-1280.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/css/images/top-1280.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/css/images/top-1600.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/css/images/top-1600.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/css/images/top-3200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/css/images/top-3200.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/css/images/xoverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/css/images/xoverlay.png -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/css/main.css -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/css/superhero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/css/superhero.css -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/js/ie/PIE.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/js/ie/PIE.htc -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/js/ie/backgroundsize.min.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/js/ie/backgroundsize.min.htc -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/js/ie/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/js/ie/html5shiv.js -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/js/ie/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/js/ie/respond.min.js -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/js/jquery.min.js -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/js/main.js -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/js/skel.min.js -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/js/util.js -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/sass/ie8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/sass/ie8.scss -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/assets/sass/main.scss -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/images/header.jpg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/images/pic01.jpg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/images/pic02.jpg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/images/pic03.jpg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero-static/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero-static/public/index.html -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_BIN: bin 3 | -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/.cfignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/.cfignore -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/.envrc -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/.gitignore: -------------------------------------------------------------------------------- 1 | log 2 | newrelic.yml 3 | -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/.rspec -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.4 2 | -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/Gemfile -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/Gemfile.lock -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/Guardfile -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/Procfile: -------------------------------------------------------------------------------- 1 | web: rackup -p $PORT 2 | -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/_guard-core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/_guard-core -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/bundler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/bundler -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/byebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/byebug -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/coderay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/coderay -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/guard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/guard -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/htmldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/htmldiff -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/ldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/ldiff -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/listen -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/pry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/pry -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/rackup -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/rspec -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/thin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/thin -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/thor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/thor -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/bin/tilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/bin/tilt -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/config.ru: -------------------------------------------------------------------------------- 1 | require File.expand_path("./lib/web", __dir__) 2 | 3 | run Web.new 4 | -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/extract_name_from_host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/extract_name_from_host.rb -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/LICENSE.txt -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/README.txt -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/css/ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/css/ie8.css -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/css/images/bottom-1280.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/css/images/bottom-1280.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/css/images/bottom-1600.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/css/images/bottom-1600.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/css/images/bottom-3200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/css/images/bottom-3200.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/css/images/overlay.png -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/css/images/top-1280.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/css/images/top-1280.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/css/images/top-1600.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/css/images/top-1600.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/css/images/top-3200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/css/images/top-3200.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/css/images/xoverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/css/images/xoverlay.png -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/css/main.css -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/css/superhero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/css/superhero.css -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/js/ie/PIE.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/js/ie/PIE.htc -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/js/ie/backgroundsize.min.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/js/ie/backgroundsize.min.htc -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/js/ie/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/js/ie/html5shiv.js -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/js/ie/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/js/ie/respond.min.js -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/js/jquery.min.js -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/js/main.js -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/js/skel.min.js -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/js/util.js -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/sass/ie8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/sass/ie8.scss -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/assets/sass/main.scss -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/images/header.jpg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/images/pic01.jpg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/images/pic02.jpg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/public/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/public/images/pic03.jpg -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/views/index.erb -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/lib/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/lib/web.rb -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/manifest-superhero.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/manifest-superhero.yml -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/manifest.yml -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/script/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/script/setup -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/spec/extract_name_from_host_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/spec/extract_name_from_host_spec.rb -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/spec/spec_helper.rb -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/spec/web_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/spec/web_spec.rb -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/byebug-5.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/byebug-5.0.0.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/coderay-1.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/coderay-1.1.0.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/columnize-0.9.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/columnize-0.9.0.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/daemons-1.2.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/daemons-1.2.3.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/diff-lcs-1.2.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/diff-lcs-1.2.5.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/eventmachine-1.0.8.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/eventmachine-1.0.8.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/ffi-1.9.10.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/ffi-1.9.10.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/formatador-0.2.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/formatador-0.2.5.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/guard-2.13.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/guard-2.13.0.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/guard-compat-1.2.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/guard-compat-1.2.1.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/guard-rspec-4.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/guard-rspec-4.6.4.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/listen-3.0.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/listen-3.0.3.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/lumberjack-1.0.9.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/lumberjack-1.0.9.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/method_source-0.8.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/method_source-0.8.2.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/nenv-0.2.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/nenv-0.2.0.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/notiffany-0.0.8.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/notiffany-0.0.8.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/pry-0.10.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/pry-0.10.2.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/pry-byebug-3.2.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/pry-byebug-3.2.0.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/rack-1.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/rack-1.6.4.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/rack-protection-1.5.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/rack-protection-1.5.3.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/rack-test-0.6.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/rack-test-0.6.3.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/rb-fsevent-0.9.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/rb-fsevent-0.9.6.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/rb-inotify-0.9.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/rb-inotify-0.9.5.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/rspec-3.3.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/rspec-3.3.0.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/rspec-core-3.3.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/rspec-core-3.3.2.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/rspec-expectations-3.3.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/rspec-expectations-3.3.1.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/rspec-mocks-3.3.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/rspec-mocks-3.3.2.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/rspec-support-3.3.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/rspec-support-3.3.0.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/shellany-0.0.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/shellany-0.0.1.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/sinatra-1.4.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/sinatra-1.4.6.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/slop-3.6.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/slop-3.6.0.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/thin-1.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/thin-1.6.4.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/thor-0.19.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/thor-0.19.1.gem -------------------------------------------------------------------------------- /08-domains-routes/cf-hero/vendor/cache/tilt-2.0.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/cf-hero/vendor/cache/tilt-2.0.1.gem -------------------------------------------------------------------------------- /08-domains-routes/images/cf-hero-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/images/cf-hero-static.png -------------------------------------------------------------------------------- /08-domains-routes/images/cf-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/images/cf-hero.png -------------------------------------------------------------------------------- /08-domains-routes/images/cf-superhero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/images/cf-superhero.png -------------------------------------------------------------------------------- /08-domains-routes/images/cfapps-cf-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/images/cfapps-cf-hero.png -------------------------------------------------------------------------------- /08-domains-routes/images/www-cf-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/images/www-cf-hero.png -------------------------------------------------------------------------------- /08-domains-routes/reveal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/reveal.json -------------------------------------------------------------------------------- /08-domains-routes/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/08-domains-routes/slides.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/README.md -------------------------------------------------------------------------------- /bluemix.marketplace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/bluemix.marketplace.txt -------------------------------------------------------------------------------- /copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/copyright.txt -------------------------------------------------------------------------------- /live/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/.gitignore -------------------------------------------------------------------------------- /live/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/Gruntfile.js -------------------------------------------------------------------------------- /live/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/LICENSE -------------------------------------------------------------------------------- /live/css/print/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/print/paper.css -------------------------------------------------------------------------------- /live/css/print/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/print/pdf.css -------------------------------------------------------------------------------- /live/css/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/reveal.css -------------------------------------------------------------------------------- /live/css/reveal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/reveal.scss -------------------------------------------------------------------------------- /live/css/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/README.md -------------------------------------------------------------------------------- /live/css/theme/beige.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/beige.css -------------------------------------------------------------------------------- /live/css/theme/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/black.css -------------------------------------------------------------------------------- /live/css/theme/blood.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/blood.css -------------------------------------------------------------------------------- /live/css/theme/league.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/league.css -------------------------------------------------------------------------------- /live/css/theme/moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/moon.css -------------------------------------------------------------------------------- /live/css/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/night.css -------------------------------------------------------------------------------- /live/css/theme/serif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/serif.css -------------------------------------------------------------------------------- /live/css/theme/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/simple.css -------------------------------------------------------------------------------- /live/css/theme/sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/sky.css -------------------------------------------------------------------------------- /live/css/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/solarized.css -------------------------------------------------------------------------------- /live/css/theme/source/beige.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/source/beige.scss -------------------------------------------------------------------------------- /live/css/theme/source/black.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/source/black.scss -------------------------------------------------------------------------------- /live/css/theme/source/blood.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/source/blood.scss -------------------------------------------------------------------------------- /live/css/theme/source/league.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/source/league.scss -------------------------------------------------------------------------------- /live/css/theme/source/moon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/source/moon.scss -------------------------------------------------------------------------------- /live/css/theme/source/night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/source/night.scss -------------------------------------------------------------------------------- /live/css/theme/source/serif.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/source/serif.scss -------------------------------------------------------------------------------- /live/css/theme/source/simple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/source/simple.scss -------------------------------------------------------------------------------- /live/css/theme/source/sky.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/source/sky.scss -------------------------------------------------------------------------------- /live/css/theme/source/solarized.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/source/solarized.scss -------------------------------------------------------------------------------- /live/css/theme/source/white.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/source/white.scss -------------------------------------------------------------------------------- /live/css/theme/template/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/template/mixins.scss -------------------------------------------------------------------------------- /live/css/theme/template/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/template/settings.scss -------------------------------------------------------------------------------- /live/css/theme/template/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/template/theme.scss -------------------------------------------------------------------------------- /live/css/theme/white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/css/theme/white.css -------------------------------------------------------------------------------- /live/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/index.html -------------------------------------------------------------------------------- /live/js/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/js/reveal.js -------------------------------------------------------------------------------- /live/lib/css/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/css/zenburn.css -------------------------------------------------------------------------------- /live/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/league-gothic/LICENSE -------------------------------------------------------------------------------- /live/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /live/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /live/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /live/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /live/lib/font/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/font/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /live/lib/js/classList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/js/classList.js -------------------------------------------------------------------------------- /live/lib/js/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/js/head.min.js -------------------------------------------------------------------------------- /live/lib/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/lib/js/html5shiv.js -------------------------------------------------------------------------------- /live/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/package.json -------------------------------------------------------------------------------- /live/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /live/plugin/leap/leap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/leap/leap.js -------------------------------------------------------------------------------- /live/plugin/markdown/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/markdown/example.html -------------------------------------------------------------------------------- /live/plugin/markdown/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/markdown/example.md -------------------------------------------------------------------------------- /live/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /live/plugin/markdown/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/markdown/marked.js -------------------------------------------------------------------------------- /live/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/math/math.js -------------------------------------------------------------------------------- /live/plugin/multiplex/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/multiplex/client.js -------------------------------------------------------------------------------- /live/plugin/multiplex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/multiplex/index.js -------------------------------------------------------------------------------- /live/plugin/multiplex/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/multiplex/master.js -------------------------------------------------------------------------------- /live/plugin/notes-server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/notes-server/client.js -------------------------------------------------------------------------------- /live/plugin/notes-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/notes-server/index.js -------------------------------------------------------------------------------- /live/plugin/notes-server/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/notes-server/notes.html -------------------------------------------------------------------------------- /live/plugin/notes/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/notes/notes.html -------------------------------------------------------------------------------- /live/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/notes/notes.js -------------------------------------------------------------------------------- /live/plugin/print-pdf/print-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/print-pdf/print-pdf.js -------------------------------------------------------------------------------- /live/plugin/remotes/remotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/remotes/remotes.js -------------------------------------------------------------------------------- /live/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/search/search.js -------------------------------------------------------------------------------- /live/plugin/zoom-js/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/live/plugin/zoom-js/zoom.js -------------------------------------------------------------------------------- /pws.marketplace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/pws.marketplace.txt -------------------------------------------------------------------------------- /retro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/retro.md -------------------------------------------------------------------------------- /reveal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/reveal.json -------------------------------------------------------------------------------- /script/live: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/script/live -------------------------------------------------------------------------------- /script/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/script/run -------------------------------------------------------------------------------- /script/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/script/setup -------------------------------------------------------------------------------- /script/slides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/script/slides -------------------------------------------------------------------------------- /slides/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/slides/manifest.yml -------------------------------------------------------------------------------- /slides/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCredo/training-cf-zero-to-hero/HEAD/slides/package.json --------------------------------------------------------------------------------