So here is my capistrano file
load 'deploy/assets' require "bundler/capistrano" set :application, "XXXXXX" set :repository, "XXXXXX" set :scm, :git
Now when I run cap deploy , I get an error
Access denied for user 'root'@'localhost' (using password: NO)
I assume this is because my database.yml file
development: adapter: sqlite3 database: db/development.sqlite3 pool: 5 timeout: 5000
Now that I have a public github account. I do not want to transfer my password and publish it on github. And if I donβt pass the password, I canβt deploy the application.
What is a good way to deal with this problem?
thanks
source share