├── .gitignore ├── LICENSE ├── README.md ├── css └── style.css ├── fullpage_js ├── jquery.fullPage.css ├── jquery.fullPage.min.js └── vendors │ └── jquery.slimscroll.min.js ├── generate.rb ├── index.html ├── sections.json ├── sections ├── change_properties.html ├── create_release.html ├── deploy.html ├── done.html ├── failing_deploy.html ├── failing_service.html ├── failing_vm.html ├── introduction.html ├── log_in.html ├── modify.html ├── modify_release.html ├── prepare.html ├── run_deploy.html ├── scale.html ├── setup_bosh_environment.html ├── upload_stemcell.html └── when_something_goes_wrong.html └── templates ├── helpers.rb ├── helpers ├── circled_title.html.erb └── circled_title.rb └── index.html.erb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/README.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/css/style.css -------------------------------------------------------------------------------- /fullpage_js/jquery.fullPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/fullpage_js/jquery.fullPage.css -------------------------------------------------------------------------------- /fullpage_js/jquery.fullPage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/fullpage_js/jquery.fullPage.min.js -------------------------------------------------------------------------------- /fullpage_js/vendors/jquery.slimscroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/fullpage_js/vendors/jquery.slimscroll.min.js -------------------------------------------------------------------------------- /generate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/generate.rb -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/index.html -------------------------------------------------------------------------------- /sections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections.json -------------------------------------------------------------------------------- /sections/change_properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/change_properties.html -------------------------------------------------------------------------------- /sections/create_release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/create_release.html -------------------------------------------------------------------------------- /sections/deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/deploy.html -------------------------------------------------------------------------------- /sections/done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/done.html -------------------------------------------------------------------------------- /sections/failing_deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/failing_deploy.html -------------------------------------------------------------------------------- /sections/failing_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/failing_service.html -------------------------------------------------------------------------------- /sections/failing_vm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/failing_vm.html -------------------------------------------------------------------------------- /sections/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/introduction.html -------------------------------------------------------------------------------- /sections/log_in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/log_in.html -------------------------------------------------------------------------------- /sections/modify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/modify.html -------------------------------------------------------------------------------- /sections/modify_release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/modify_release.html -------------------------------------------------------------------------------- /sections/prepare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/prepare.html -------------------------------------------------------------------------------- /sections/run_deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/run_deploy.html -------------------------------------------------------------------------------- /sections/scale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/scale.html -------------------------------------------------------------------------------- /sections/setup_bosh_environment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/setup_bosh_environment.html -------------------------------------------------------------------------------- /sections/upload_stemcell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/upload_stemcell.html -------------------------------------------------------------------------------- /sections/when_something_goes_wrong.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/sections/when_something_goes_wrong.html -------------------------------------------------------------------------------- /templates/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/templates/helpers.rb -------------------------------------------------------------------------------- /templates/helpers/circled_title.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/templates/helpers/circled_title.html.erb -------------------------------------------------------------------------------- /templates/helpers/circled_title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/templates/helpers/circled_title.rb -------------------------------------------------------------------------------- /templates/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariash/learn-bosh/HEAD/templates/index.html.erb --------------------------------------------------------------------------------