python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to configure capistrano to use local rsa key instead of ssh agent
I used capistrano to deploy my project using my local rsa key located at ~/.ssh/id_rsa. This always worked as expected.
Now I installed the development environment on a new computer, and now when I ru...
Lorenz Meyer
Votes: 0
Answers: 1
passwordless sudo still requires password in capistrano
In capistrano script
set :stage, :production
set :branch, 'master'
server 'lion.example.jp', user: 'ubuntu', roles: %w(app),
set :user, "ubuntu"
namespace :deploy do
desc 'Collec Stati...
whitebear
Votes: 0
Answers: 1
Auto restart the server after capistrano deploy
I have nginx + nginx unit + django python application , and django project is is deployed by capistrano
deploy.rb
lock "~> 3.16.0"
set :application, "mynavi"
set :branch, 'mast...
whitebear
Votes: 0
Answers: 1
Ruby on Rails: Cap production deploy not working
I finished my app thats running with Ruby on Rails on my local machine. Now I want to finally deploy it fallowing a video from Youtube (https://www.youtube.com/watch?v=xpYpaRUFzTI&t=888s).
When I ...
Richard205
Votes: 0
Answers: 1