mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
303366f215
When :verify_commit is set to true, after updating the mirror `git verify-commit <revision>` will be run on the revision that is about to be deployed to check if it has a valid signature. This will allow a user to be certain that the code they are about to deploy was signed by an authorized author, and that they are not in danger of deploying malicious code in an attack scenario such as https://github.blog/2012-03-04-public-key-security-vulnerability-and-mitigation/ |
||
---|---|---|
.. | ||
_includes | ||
_layouts | ||
_posts | ||
assets | ||
documentation | ||
_config.yml | ||
CNAME | ||
Gemfile | ||
Gemfile.lock | ||
index.markdown | ||
README.md |
capistranorb.com
This docs/
directory generates the capistranorb.com site. Feel free to send pull requests to make improvements to Capistrano's documentation!
Quick start
This is a GitHub Pages project, which means it is built using Jekyll. To run the site locally, you'll need a functioning Ruby environment.
After checking out the capistrano repository, run:
cd docs
bundle install
Then start the Jekyll server with:
bundle exec jekyll serve
You should now be able to preview the site on http://localhost:4000
. After making any changes to markdown or HTML files, just refresh your browser to see the results. You do not have to restart the Jekyll process.
More information: Using Jekyll with Pages.