Skip to content
This repository was archived by the owner on Feb 16, 2021. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Capfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ set :repository, 'xxx'
### DO NOT EDIT BELOW ###

require 'capifony_symfony2'
set :stages, %w(production staging)
set :default_stage, 'staging'
set :stage_dir, 'deployment/stages'
set :interactive_mode, false
set :stages, %w(production staging)
set :default_stage, 'staging'
set :stage_dir, 'deployment/stages'

require 'capistrano/ext/multistage'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Known issues

## composer asking for input when deploying

Something changed in composer's output making capifony think it wants input (capinfony literally checks for `: ` at the end of lines).
Therefor you need to force `interactive_mode` to be false

## npm install failing

Downgrade node to version 0.10.36. Node did backwards incompatible changes making
Expand Down