本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
Devfile 事件
目前, CodeCatalyst 僅支援您 資料庫中postStart
的事件。如需詳細資訊,請參閱 https://Devfile.io 文件postStartObject
下列範例示範如何在 devfile 中新增postStart
事件繫結。
commands:
- id: executescript
exec:
component: test
commandLine: "./projects/devfiles/script.sh"
- id: updateyum
exec:
component: test
commandLine: "yum -y update --security"
events:
postStart:
- updateyum
- executescript
啟動後,您的開發環境會依定義的順序執行指定的postStart
命令。如果命令失敗,Dev Environment 將繼續執行,且執行輸出儲存在 下的日誌中/aws/mde/logs
。