Use a server-specific database config

This commit is contained in:
Petko Bordjukov 2015-10-08 20:14:21 +03:00
parent 2478f0cf33
commit f7c5850c11
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ set :log_level, :info
# set :pty, true
# Default value for :linked_files is []
set :linked_files, fetch(:linked_files, []).push('config/secrets.yml', 'db/production.sqlite3')
set :linked_files, fetch(:linked_files, []).push('config/database.yml', 'config/secrets.yml', 'db/production.sqlite3')
# Default value for linked_dirs is []
set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system')