capistrano/docs
Grzegorz Błaszczyk 5e5d918f5e
Limit the number of concurrent git connections to 10, and make it configurable (#2044)
* (#2044) (#1957) Update git.rake - configurable max concurrent connections
Default git_max_concurrent_connections is set to 10 hosts per group.

Default git_wait_interval is set to 3 seconds.

This enables deployments for large number of servers with default Gitlab or similar git server configuration with default SSH settings (max 10 concurrent connections).

* ADD: rspec tests for default values

* UPDATE: docs/documentation/getting-started/configuration/index.markdown
2020-02-05 08:10:32 -08:00
..
_includes Fix #2010 by removing Harrow.io link from the sidebar 2018-12-11 15:20:14 +01:00
_layouts Switch a number of http links and dependencies to https 2018-06-24 11:22:13 -05:00
_posts Move gh-pages site to the docs/ folder 2016-08-23 18:04:57 -07:00
css Removed prism (for syntax highlight). 2017-10-05 12:57:49 +02:00
documentation Limit the number of concurrent git connections to 10, and make it configurable (#2044) 2020-02-05 08:10:32 -08:00
fonts Move gh-pages site to the docs/ folder 2016-08-23 18:04:57 -07:00
images Move gh-pages site to the docs/ folder 2016-08-23 18:04:57 -07:00
js Removed prism (for syntax highlight). 2017-10-05 12:57:49 +02:00
CNAME Move gh-pages site to the docs/ folder 2016-08-23 18:04:57 -07:00
Gemfile Fix RuboCop Style/StringLiterals violation 2016-08-26 17:33:15 -07:00
Gemfile.lock Upgrade nokogiri to fix security warning (#2031) 2019-09-01 15:00:21 -07:00
README.md Switch a number of http links and dependencies to https 2018-06-24 11:22:13 -05:00
_config.yml Switch from redcarpet to GH-flavored kramdown 2016-08-30 18:14:09 -07:00
favicon.ico Move gh-pages site to the docs/ folder 2016-08-23 18:04:57 -07:00
index.markdown Remove remaining ref to old documentation repo 2016-08-30 18:02:20 -07:00

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.