Eleazar E
Eleazar E

Reputation: 1

Development in Windows and Deploy to Ubuntu 16.04 locally using capistrano

I am finish developing my website in windows. I am using YII framework. Then I am deploying it on the Ubuntu 16.04 LTS. This is physical server I am working on my office. My question can I deploy the project using the capistrano via offline? If yes, how can I do it?

thanks.

Upvotes: 0

Views: 45

Answers (1)

Matt Brictson
Matt Brictson

Reputation: 11082

Generally speaking: no. Capistrano is primarily designed for deploying from a client machine (e.g. your development environment, or a CI environment) to a server via SSH. If you are not in a networked environment (I assume that's what you mean by "offline"), then Capistrano is not an appropriate tool.

Upvotes: 1

Related Questions