1
0
Fork 0
deploying-rails-app/index.html

238 lines
6.6 KiB
HTML
Raw Normal View History

2016-03-08 21:34:06 -05:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Deploy Your Rails App</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="bower_components/reveal.js/css/reveal.css">
<link rel="stylesheet" href="css/theme.css" id="theme">
<link rel="stylesheet" href="bower_components/reveal.js/css/theme/solarized.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="bower_components/highlightjs/styles/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'bower_components/reveal.js/css/print/pdf.css' : 'bower_components/reveal.js/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="bower_components/reveal.js/lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="slides/index.md"></section>
<section data-markdown="slides/what-is-heroku.md"></section>
<section data-markdown="slides/what-chris-says.md"></section>
<section data-markdown="slides/how-this-works.md"></section>
<section data-markdown="slides/getting-started.md"></section>
<section data-markdown="slides/build-a-rails-app.md"></section>
<section data-markdown="slides/quick-configuration-updates.md"></section>
<section data-markdown="slides/create-the-droplet.md"></section>
<section data-markdown="slides/prepare-our-server.md"></section>
<section data-markdown="slides/install-ruby.md"></section>
<section data-markdown="slides/let-s-deploy.md"></section>
<section data-markdown="slides/setup-a-middleware.md"></section>
<section data-markdown="slides/setup-a-middleware-for-server.md"></section>
<section data-markdown="slides/setup-a-middleware-for-server-continued.md"></section>
<section data-markdown="slides/run-a-web-server.md"></section>
<section data-markdown="slides/time-for-the-special-sauce.md"></section>
<section data-markdown="slides/setup-git-remote.md"></section>
<section data-markdown="slides/viola.md"></section>
2016-03-09 09:04:48 -05:00
<section data-markdown="slides/hit-the-deploy-button.md"></section>
2016-03-08 21:34:06 -05:00
<section data-markdown="slides/resources.md"></section>
</div>
</div>
<script src="bower_components/reveal.js/lib/js/head.min.js"></script>
<script src="bower_components/reveal.js/js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: false,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// Optional reveal.js plugins
dependencies: [
{ src: 'bower_components/reveal.js/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'bower_components/reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'bower_components/reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'bower_components/reveal.js/plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( '[data-html]' ) || !!document.querySelector( 'pre code' ) || !!document.querySelector( '[data-markdown]' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'bower_components/reveal.js/plugin/zoom-js/zoom.js', async: true },
{ src: 'bower_components/reveal.js/plugin/notes/notes.js', async: true },
{ src: 'js/loadhtmlslides.js', condition: function() { return !!document.querySelector( '[data-html]' ); } }
]
});
</script>
</body>
</html>