]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Update Capistrano configuration for symfony3 1680/head
authorNicolas Lœuillet <nicolas.loeuillet@smile.fr>
Wed, 17 Feb 2016 14:02:50 +0000 (15:02 +0100)
committerNicolas Lœuillet <nicolas.loeuillet@smile.fr>
Wed, 17 Feb 2016 14:02:50 +0000 (15:02 +0100)
app/config/capistrano/deploy.rb

index c2562965bf665aa208ec69e6be33811d0da28457..f15eef3004415a421c0a5ae57a19f317854e2ea8 100644 (file)
@@ -1,6 +1,10 @@
 # config valid only for current version of Capistrano
 lock '3.4.0'
 
+set :log_path, "var/logs"
+set :cache_path, "var/cache"
+set :symfony_console_path, 'bin/console'
+
 set :application, 'wallabag'
 set :repo_url, 'git@github.com:wallabag/wallabag.git'
 
@@ -16,8 +20,7 @@ set :log_level, :info
 set :composer_install_flags, '--no-dev --prefer-dist --no-interaction --optimize-autoloader'
 
 set :linked_files, %w{app/config/parameters.yml}
-set :linked_dirs, %w{app/logs web/uploads data}
-
+set :linked_dirs, [fetch(:log_path), "var/sessions", "web/uploads", "data"]
 set :keep_releases, 3
 
 after 'deploy:finishing', 'deploy:cleanup'