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
| DEBUG [406a2577] Running /usr/bin/env [ -d ~/.rvm ] as [email protected] | |
| DEBUG [406a2577] Command: [ -d ~/.rvm ] | |
| DEBUG [406a2577] Finished in 0.547 seconds with exit status 1 (failed). | |
| DEBUG [3ec3cf51] Running /usr/bin/env [ -d /usr/local/rvm ] as [email protected] | |
| DEBUG [3ec3cf51] Command: [ -d /usr/local/rvm ] | |
| DEBUG [3ec3cf51] Finished in 0.017 seconds with exit status 0 (successful). | |
| DEBUG [e456b9fd] Running /usr/local/rvm/bin/rvm version as [email protected] | |
| DEBUG [e456b9fd] Command: /usr/local/rvm/bin/rvm version | |
| DEBUG [e456b9fd] rvm 1.26.11 (latest) by Wayne E. Seguin <[email protected]>, Michal Papis <[email protected]> [https://rvm.io/] | |
| DEBUG [e456b9fd] Finished in 0.309 seconds with exit status 0 (successful). |
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
| server '172.16.45.70', | |
| user: 'suporte', | |
| password: 'nPh3R4Po', | |
| roles: %w{web app db}, | |
| port: 22, | |
| ssh_options: { | |
| forward_agent: true | |
| } | |
| set :stage, :production |
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
| # config valid only for current version of Capistrano | |
| lock '3.4.0' | |
| set :application, 'guia_de_servicos' | |
| set :repo_url, '[email protected]:sincseplag/guia.git' | |
| # Default value for :scm is :git | |
| set :scm, :git | |
| # Default value for :format is :pretty |
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
| settings.py | |
| #-*-coding:cp1252 | |
| # Django settings for budegadasartes project. | |
| import os | |
| DEBUG = True | |
| TEMPLATE_DEBUG = DEBUG | |
| ROOTDIR = os.path.realpath(os.path.dirname(__file__)) |