Difference between build and deploy?

前端 未结 4 1966
甜味超标
甜味超标 2021-01-30 04:03

What is the difference between a build and deploy and re-deploy? What should be done when you just have some

4条回答
  •  误落风尘
    2021-01-30 05:01

    Build means to Compile the project.

    Deploy means to Compile the project & Publish the output

    1. For web applications no need to deploy or nothing need to do at client side except simple browser with url. all web applications are deployed at Server Machine(IIS) only, that application can be accessed by all client machines (any browser is enough).

    2. For Desktop applications Wherever you want to use the application, need to deployed/installed in that system.

提交回复
热议问题