이 콘텐츠는 선택한 언어로 제공되지 않습니다.
13.6.3. Enabling and Disabling Hot Deployment
Follow the instructions applicable to your operating system to enable or disable hot deployment.
Windows
Enable hot deployment by creating the hot_deploy
marker file in the application's root directory with the following command:
copy NUL > .openshift\markers\hot_deploy
C:\app_directory> copy NUL > .openshift\markers\hot_deploy
Disable hot deployment by deleting the
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
hot_deploy
marker file from the application's root directory:
del .openshift\markers\hot_deploy
C:\app_directory> del .openshift\markers\hot_deploy
Mac OS X and Linux
Enable hot deployment by creating the
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
hot_deploy
marker file in the application's root directory:
touch .openshift/markers/hot_deploy
[user@user app_directory]$ touch .openshift/markers/hot_deploy
Disable hot deployment by deleting the
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
hot_deploy
marker file from the application's root directory:
rm .openshift/markers/hot_deploy
[user@user app_directory]$ rm .openshift/markers/hot_deploy