-
# 基本部署
### 基础命令
```Bash
# root
apt-get update
```
### 创建用户
```bash
# root
adduser deploy # 默认生成的 用户组 和 用户名 相同
groups deploy # 查看用户属于哪些用户组
usermod -a -G root deploy # 将deploy加入root组
# v…
-
We need capistrano to let us deploy to a production server.
-
The README leaves this as a question, so I'd like to start a discussion on what we should do so I can start pull requests.
I'm in favor of Chef plus Capistrano because they both have been around long…
-
Or is this not done for some specific reason?
-
Someone has to open this issue anyway...someone :o)
But it is not urgent since cap 3 still lack most basic features and plugin support
Can wait for `3.0.*` or even `3.1.0`
-
I'm looking to a way to handle database rollback on capistrano rollback.
One off the solution that I'm seeing is to dump migrations done in a file after each deploy.
Like that on rollback I could do a…
lalop updated
3 years ago
-
Note: This is a copy paste from my question [posted to Stack Overflow](http://stackoverflow.com/questions/23907993/capistrano-3-recipe-for-dynamic-sitemaps).
I'm trying to "translate" the Capistrano …
-
Is it possible to use Sprinkle with Capistrano 3?
-
So I'm easily able to go up with the migrations on Capistrano deploy.
I would like to implement going down on Capistrano rollback, how would you go about that?
Something like this, or is there any e…
-
Doesn't work out of the box with Capistrano 3, for lack of Capistrano::Configuration.
Maybe a simple `require` is enough, but I think a review is necessary in regard of the large changes in Capistrano…