mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
172 lines
8.1 KiB
HTML
172 lines
8.1 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Introductory Demo Video</title>
|
||
<link href='http://fonts.googleapis.com/css?family=Enriqueta' rel='stylesheet' type='text/css'>
|
||
<script type="text/javascript" src="//use.typekit.net/itm5ubu.js"></script>
|
||
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
|
||
<link rel="stylesheet" href="/css/foundation.css" />
|
||
<link rel="stylesheet" href="/css/capistrano.css">
|
||
<link rel="stylesheet" href="/css/social_foundicons.css" />
|
||
<link rel="stylesheet" href="/css/okaidia.css">
|
||
<script src="/js/vendor/custom.modernizr.js"></script>
|
||
</head>
|
||
<body>
|
||
|
||
<div class="top-bar">
|
||
<a href="/" class="brand">
|
||
<img src="/images/CapistranoLogo.png" />
|
||
</a>
|
||
</div>
|
||
|
||
|
||
<div class="row">
|
||
<div class="large-4 columns">
|
||
<ul class="side-nav">
|
||
<li><a href="http://www.harrow.io/" class="advertisment"><span class="label label-important">New</span> Hosted Capistrano for Teams</a></li>
|
||
<li class="divider"></li>
|
||
<h5>Overview</h5>
|
||
<li><a href="/documentation/overview/what-is-capistrano/">What is Capistrano?</a></li>
|
||
<li><a href="/documentation/overview/introductory-demo-video/">Introductory Demo Video</a></li>
|
||
<li class="divider"></li>
|
||
<h5>Getting Started</h5>
|
||
<li><a href="/documentation/getting-started/installation/index.html">Installation</a></li>
|
||
<li><a href="/documentation/getting-started/preparing-your-application/index.html">Preparing Your Application</a></li>
|
||
<li><aj href="/documentation/getting-started/authentication-and-authorisation/index.html">Authentication & Authorisation</a></li>
|
||
<li><a href="/documentation/getting-started/cold-start/index.html">Cold Start</a></li>
|
||
<li><a href="/documentation/getting-started/rollbacks/index.html">Rollbacks</a></li>
|
||
<li class="divider"></li>
|
||
<h5>Troubleshooting</h5>
|
||
<li><a href="/documentation/troubleshooting/authentication/index.html">SCM (Git) Authentication</a></li>
|
||
<li><a href="/documentation/troubleshooting/connectivity/index.html">Connectivity</a></li>
|
||
<!--<li><a href="/documentation/troubleshooting/gateway-servers/index.html">Gateway Servers</a></li>-->
|
||
<li><a href="/documentation/troubleshooting/agent-forwarding/index.html">Agent Forwarding</a></li>
|
||
<li><a href="/documentation/troubleshooting/sudo-password/index.html">`sudo` Password</a></li>
|
||
<li><a href="/documentation/troubleshooting/rvm-rbenv-nvm/index.html">RVM, `rbenv` And `nvm`</a></li>
|
||
<li class="divider"></li>
|
||
<h5>FAQ</h5>
|
||
<li><a
|
||
href="/documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.html">Why Does Something Work In An SSH Session, But Not In Capistrano?</a></li>
|
||
<li><a href="/documentation/faq/should-i-use-capistrano-to-provision-my-servers/index.html">Should I Use Capistrano To Provision My Servers?</a></li>
|
||
<li class="divider"></li>
|
||
<h5>Power Use-Cases</h5>
|
||
<li><a href="/documentation/power-use-cases/integration-with-rake/index.html">Integration With Rake</a></li>
|
||
<li><a href="/documentation/power-use-cases/driving-tools-such-as-chef-solo/index.html">Driving Tools Such As <em>Chef Solo</em></a></li>
|
||
<li class="divider"></li>
|
||
<h5>Recent Announcements</h5>
|
||
|
||
<li><a href="/2013/06/01/release-announcement.html"><span class="post-date">01 Jun 2013</span> Capistrano Version 3 Release Announcement</a></li>
|
||
|
||
</ul>
|
||
|
||
</div>
|
||
<div class="large-8 column">
|
||
<div class="content">
|
||
<h2>Introductory Demo Video</h2>
|
||
<p>The video below was filmed on Mac OSX 10.8 using a more-or-less standard shell
|
||
without much previous setup.</p>
|
||
|
||
<p>It covers using Capistrano to install an example Rails project on a previously
|
||
unprepared server, covering all aspects of Github access, as well as
|
||
privisioning the server using <em>Chef Solo</em> and Capistrano with <em>Rake</em>.</p>
|
||
|
||
<h4 id="toc_0"> Show Notes</h4>
|
||
|
||
<p>The <em>Chef Solo</em> recipes can be reached at [this repository at
|
||
Github][capistrano-chef-solo-example-recipes], they rely on a fairly new
|
||
version of <em>Chef Solo</em>, spefically any including the results of <a href="https://github.com/opscode/chef/pull/359">this
|
||
ticket</a>. The aforementioned <em>Chef</em> issue adds environment
|
||
support to <em>Chef Solo</em>.</p>
|
||
|
||
<p>The provisioning can also be done using any other mechanism, it's generally
|
||
accepted however that there's not much point in automising your deploys,
|
||
unless you are also automating provisioning of your servers for a known,
|
||
consistent state.</p>
|
||
|
||
<p>Using <code>sudo</code> with any deployment can be tricky, so it's better to avoid it.
|
||
Rebooting services without <code>sudo</code> is typically the first place people run into
|
||
trouble using Capistrano. The <a href="/troubleshooting/sudo-password/">trouble shooting page for <code>sudo</code>
|
||
problems</a> may help.</p>
|
||
|
||
<p><strong>Note:</strong> Some long sequences have been shortened (nobody needs to sit and watch me
|
||
sitting and watching Ruby compile, for example!)</p>
|
||
|
||
<h2 id="toc_1"></h2>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!--<div class="container"> -->
|
||
<!-- <h1 class="title"><a href="/">Capistrano</a></h1>-->
|
||
<!-- <a class="extra" href="/">home</a> -->
|
||
<!-- </div> -->
|
||
|
||
<!-- <p>The video below was filmed on Mac OSX 10.8 using a more-or-less standard shell
|
||
without much previous setup.</p>
|
||
|
||
<p>It covers using Capistrano to install an example Rails project on a previously
|
||
unprepared server, covering all aspects of Github access, as well as
|
||
privisioning the server using <em>Chef Solo</em> and Capistrano with <em>Rake</em>.</p>
|
||
|
||
<h4 id="toc_0"> Show Notes</h4>
|
||
|
||
<p>The <em>Chef Solo</em> recipes can be reached at [this repository at
|
||
Github][capistrano-chef-solo-example-recipes], they rely on a fairly new
|
||
version of <em>Chef Solo</em>, spefically any including the results of <a href="https://github.com/opscode/chef/pull/359">this
|
||
ticket</a>. The aforementioned <em>Chef</em> issue adds environment
|
||
support to <em>Chef Solo</em>.</p>
|
||
|
||
<p>The provisioning can also be done using any other mechanism, it's generally
|
||
accepted however that there's not much point in automising your deploys,
|
||
unless you are also automating provisioning of your servers for a known,
|
||
consistent state.</p>
|
||
|
||
<p>Using <code>sudo</code> with any deployment can be tricky, so it's better to avoid it.
|
||
Rebooting services without <code>sudo</code> is typically the first place people run into
|
||
trouble using Capistrano. The <a href="/troubleshooting/sudo-password/">trouble shooting page for <code>sudo</code>
|
||
problems</a> may help.</p>
|
||
|
||
<p><strong>Note:</strong> Some long sequences have been shortened (nobody needs to sit and watch me
|
||
sitting and watching Ruby compile, for example!)</p>
|
||
|
||
<h2 id="toc_1"></h2>
|
||
-->
|
||
|
||
<!--</div> [> /container <] -->
|
||
|
||
<div class="row">
|
||
<div class="large-4 columns">
|
||
<ul>
|
||
<li><a href="/about">About Capistrano</a></li>
|
||
<li><a href="https://github.com/capistrano/capistrano/blob/master/CONTRIBUTING">Contributing</a></li>
|
||
<li><a href="https://rubygems.org/gems/capistrano/versions">Releases</a></li>
|
||
<li><a href="/upgrading">Upgrading</a></li>
|
||
<li><a href="/security">Security</a></li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="large-4 columns">
|
||
<ul>
|
||
<li><a href="http://stackoverflow.com/questions/tagged/capistrano">StackOverflow</a></li>
|
||
<li><a href="https://groups.google.com/forum/#!forum/capistrano">Mailing List</a></li>
|
||
<li><a href=".... ">Commercial Support</a></li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="large-4 columns">
|
||
<ul>
|
||
<li><a href="//twitter.com/capistranorb"><i class="foundicon-twitter"></i></a></li>
|
||
<li><a href="//github.com/capistrano"><i class="foundicon-github"></i></a></li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<script src="/js/prism.js"></script>
|
||
<script src="/js/prism.ruby.js"></script>
|
||
</body>
|
||
</html>
|