0

サンプル プロジェクトを ubuntu から Windows にデプロイしたいのですが、ubuntu で ssh キーを正常に作成しました。ここで、Windowsからリモートでubuntuにファイルをコピーするだけでこれを行いたいと考えています。「cap production deploy」を実行すると、「fatal: No remote configured to list refs from.」というエラーが表示されました。これはgitからのものです。私の質問は、Windows からサーバーにプロジェクトをコピー アンド ペーストしただけの場合、inscm をセットアップするにはどうすればよいですか?

ちなみに、これは私の次のrbファイルのコードです:

Deployer.rb lock '3.5.0' --set :application, 'my_app_name' --set :repo_url, 'git@example.com:me/my_repo.git' set :application, "zemsoft" --set :deploy_to, "/var/www/my-app.com" set :deploy_to, "/var/www/e" set :domain, "zemsofterp2.com"

set :scm, "git" --set :repository, "file:/// Users/deployer/sites/my-app" set :repository, "C:/xampp/htdocs/vendor" set :deploy_via, :copy set :use_sudo, false set :keep_releases, 3 -- Default branch is :master -- ask :branch, git rev-parse --abbrev-ref HEAD.chomp

-- Default deploy_to directory is /var/www/my_app_name -- set :deploy_to, '/var/www/my_app_name'

-- Default value for :scm is :git -- set :scm, :git

-- Default value for :format is :airbrussh. -- set :format, :airbrussh

-- You can configure the Airbrussh format using :format_options. -- These are the defaults. -- set :format_options, command_output: true, log_file: 'log/capistrano.log', color: :auto, truncate: :auto

-- Default value for :pty is false -- set :pty, true

-- Default value for :linked_files is [] -- set :linked_files, fetch(:linked_files, []).push('config/database.yml', 'config/secrets.yml')

-- Default value for linked_dirs is [] -- set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'public/system')

-- Default value for default_env is {} -- set :default_env, { path: "/opt/ruby/bin:$PATH" }

-- Default value for keep_releases is 5 -- set :keep_releases, 5

namespace :deploy do

after :restart, :clear_cache do on roles(:web), in: :groups, limit: 3, wait: 10 do -- Here we can do anything such as: -- within release_path do -- execute :rake, 'cache:clear' end end end

end

Production.rb role :app, %w{ely029@192.168.1.241} # EDIT your ssh username and server ip address

set :ssh_options, { auth_methods: %w(password), password: "embuscado29" # EDIT your ssh password

4

1 に答える 1

1

set :deploy_via, :copy何もしません。これは有効な Capistrano 3 設定ではありません。

Capistrano 3 には、あるマシンから別のマシンにファイルをコピーする方法で展開する組み込みのメカニズムがありません。サーバーがアクセスできるリモート Git リポジトリなど、中央のソース コード リポジトリが必要です。

必要なコピー動作を提供する可能性のあるサードパーティの Capistrano プラグインがあります (GitHub でcapistrano copyを検索してください) が、その品質や有効性を保証することはできません。リモート Git リポジトリを使用することをお勧めします。

于 2016-07-26T22:26:39.657 に答える