- Working on: windows 7
- Deploying to: linux
deploy.rb
set :application, 'rz'
set :deploy_to, '/path/to/app'
set :deploy_via, :copy
set :scm, :git
set :repo_url, "."
production.rb
set :password, ask('pass',nil)
server 'xxx.xxx.xxx.xxx', user: 'user', password: fetch(:password), roles: %w{web app db}
Hi,
i'm looking for way how to deploy padrino app from local GIT repository located in root of app folder on local filesystem, please can anybody help me?
I have checked everything possible (google, stackoverflow etc.) without any success:(
Thank You