From be2221c57ab8c9748bb05dc98d320258af81b754 Mon Sep 17 00:00:00 2001 From: Henne Vogelsang Date: Mon, 9 May 2016 14:47:29 +0200 Subject: [PATCH] Include .env.production in deploy --- config/deploy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/deploy.rb b/config/deploy.rb index 7ac957c4..5a9090fb 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -10,7 +10,7 @@ set :repository, 'https://github.com/openSUSE/osem.git' # Manually create these paths in shared/ (eg: shared/config/database.yml) in your server. # They will be linked in the 'deploy:link_shared_paths' step. -set :shared_paths, %w{ config/database.yml log public/system config/secrets.yml config/piwik.yml tmp} +set :shared_paths, %w{ config/database.yml log public/system config/secrets.yml config/piwik.yml tmp .env.production} task setup: :environment do queue! %[mkdir -p "#{deploy_to}/shared/log"]