Last active
June 2, 2019 19:01
-
-
Save jacksonpires/950c884b73a77b5531b6ba6b844c7172 to your computer and use it in GitHub Desktop.
Configuração global do Capistrano (config/deploy.rb)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set :application, '<Nome da sua App>' # Nome da sua aplicação | |
set :repo_url, '[email protected]:eu/sua_app.git' # Repositório git do seu projeto | |
set :deploy_to, '/var/www/<pasta da app>' # Pasta onde a app está localizada | |
set :branch, 'master' | |
set :keep_releases, 5 | |
set :format, :airbrussh | |
set :log_level, :debug | |
append :linked_files, "config/database.yml", "config/master.key" | |
append :linked_dirs, "storage", "log", "tmp/pids", "tmp/cache", "tmp/sockets", "public/system" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment