aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/config/capistrano
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-10-29 14:14:20 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-10-29 14:39:07 +0200
commitc4b3933bae583da1bdd4b97471bdcca08ab92312 (patch)
tree2fd72776b251a0106201137cb6320be250cbdf5f /app/config/capistrano
parent267087d969e68e2f5abcb18f526120d835d9a686 (diff)
downloadwallabag-c4b3933bae583da1bdd4b97471bdcca08ab92312.tar.gz
wallabag-c4b3933bae583da1bdd4b97471bdcca08ab92312.tar.zst
wallabag-c4b3933bae583da1bdd4b97471bdcca08ab92312.zip
Updated Capistrano configuration
Diffstat (limited to 'app/config/capistrano')
-rw-r--r--app/config/capistrano/deploy.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/app/config/capistrano/deploy.rb b/app/config/capistrano/deploy.rb
index f15eef30..fee04620 100644
--- a/app/config/capistrano/deploy.rb
+++ b/app/config/capistrano/deploy.rb
@@ -1,9 +1,4 @@
1# config valid only for current version of Capistrano 1# config valid only for current version of Capistrano
2lock '3.4.0'
3
4set :log_path, "var/logs"
5set :cache_path, "var/cache"
6set :symfony_console_path, 'bin/console'
7 2
8set :application, 'wallabag' 3set :application, 'wallabag'
9set :repo_url, 'git@github.com:wallabag/wallabag.git' 4set :repo_url, 'git@github.com:wallabag/wallabag.git'
@@ -11,8 +6,6 @@ set :repo_url, 'git@github.com:wallabag/wallabag.git'
11set :ssh_user, 'framasoft_bag' 6set :ssh_user, 'framasoft_bag'
12server '78.46.248.87', user: fetch(:ssh_user), roles: %w{web app db} 7server '78.46.248.87', user: fetch(:ssh_user), roles: %w{web app db}
13 8
14set :scm, :git
15
16set :format, :pretty 9set :format, :pretty
17set :log_level, :info 10set :log_level, :info
18# set :log_level, :debug 11# set :log_level, :debug
@@ -23,4 +16,4 @@ set :linked_files, %w{app/config/parameters.yml}
23set :linked_dirs, [fetch(:log_path), "var/sessions", "web/uploads", "data"] 16set :linked_dirs, [fetch(:log_path), "var/sessions", "web/uploads", "data"]
24set :keep_releases, 3 17set :keep_releases, 3
25 18
26after 'deploy:finishing', 'deploy:cleanup' 19after 'deploy:updated', 'symfony:cache:clear'