이 콘텐츠는 선택한 언어로 제공되지 않습니다.
13.3. Deployment Mechanisms
13.3.1. Automatic Deployment 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
When an application is created as described in Section 11.2, “Creating an Application”, it is configured for automatic deployment by default. If the application code is changed locally, run the following commands to commit and deploy the application automatically:
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
The
git commit git push
$ git commit
$ git push
git push
command sends the application data to the remote repository and automatically deploys the application. The application automatically stops, builds, and restarts when the code changes are pushed to the remote server.
13.3.1.1. Configuring Automatic Deployment 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
Automatic deployment is configured by default when a new application is created. However, if the deployment mechanism was changed and you wish to revert back to automatic deployment, do so with the following command:
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
rhc configure-app -a App_Name --auto-deploy
$ rhc configure-app -a App_Name --auto-deploy