mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
Rework per feedback
This commit is contained in:
parent
7d33d6d3ec
commit
f18004c1ae
3 changed files with 16 additions and 10 deletions
|
@ -31,7 +31,11 @@
|
|||
<li><a href="/documentation/getting-started/local-tasks/">Local Tasks</a></li>
|
||||
<li><a href="/documentation/getting-started/before-after/">Before / After Hooks</a></li>
|
||||
<li><a href="/documentation/getting-started/authentication-and-authorisation/">Authentication & Authorisation</a></li>
|
||||
<li><a href="/documentation/getting-started/cookbook/">Task Cookbook</a></li>
|
||||
<li class="divider"></li>
|
||||
|
||||
<h5>Task cookbook</h5>
|
||||
<li><a href="/documentation/tasks/intro/">Introduction</a></li>
|
||||
<li><a href="/documentation/tasks/rails/">Rails related tasks</a></li>
|
||||
<li class="divider"></li>
|
||||
|
||||
<h5>Advanced Features</h5>
|
||||
|
|
10
docs/documentation/tasks/intro/index.markdown
Normal file
10
docs/documentation/tasks/intro/index.markdown
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: Task Cookbook
|
||||
layout: default
|
||||
---
|
||||
|
||||
These pages document common custom tasks for specific use cases. It is hoped that these will be copied and modified for your use case, and also provide a basis for understanding how to extend Capistrano for your own usage.
|
||||
|
||||
You can also look in most Capistrano repositories (including core) for rake tasks to see further example of how it works.
|
||||
|
||||
Feel free to contribute more via a Pull Request.
|
|
@ -1,16 +1,8 @@
|
|||
---
|
||||
title: Task Cookbook
|
||||
title: Custom Rails Tasks
|
||||
layout: default
|
||||
---
|
||||
|
||||
This page documents common custom tasks for specific use cases. It is hoped that these will be copied and modified for your use case, and also provide a basis for understanding how to extend Capistrano for your own usage.
|
||||
|
||||
You can also look in most Capistrano repositories (including core) for rake tasks to see further example of how it works.
|
||||
|
||||
Feel free to contribute more via a Pull Request.
|
||||
|
||||
## Rails
|
||||
|
||||
Many of these tasks probably require [Capistrano::Rails](https://github.com/capistrano/rails).
|
||||
|
||||
### Run arbitrary rake tasks from environment variables
|
Loading…
Reference in a new issue