直接從github存在依賴項。這不是我的資料庫。它在github上。無法部署在「mix.exs」中具有github依賴項的網站
defp deps do
[{:something123, git: "[email protected]:user123/something123.git"}
在本地主機上運行良好。但是,當我部署服務器時,會引發異常:
* Updating something123 ([email protected]:user123/something123.git)
Host key verification failed.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
** (Mix) Command "git --git-dir=.git fetch --force --quiet --progress" failed
什麼權限?再一次,該存儲庫不是我的。
我正在部署的這個網站的代碼也在github上,在某人的存儲庫中。關於部署迄今爲止的單元,我從github添加了依賴關係。
是依賴公共或私人倉庫? –
@MBuhot,public – user7905648