PostConfigAction gives a chance for an apptype to override do something at the end of ddev config.
()
| 503 | // PostConfigAction gives a chance for an apptype to override do something at |
| 504 | // the end of ddev config. |
| 505 | func (app *DdevApp) PostConfigAction() error { |
| 506 | if appFuncs, ok := appTypeMatrix[app.Type]; ok && appFuncs.postConfigAction != nil { |
| 507 | return appFuncs.postConfigAction(app) |
| 508 | } |
| 509 | |
| 510 | return nil |
| 511 | } |
| 512 | |
| 513 | // PostStartAction gives a chance for an apptype to do something after the app |
| 514 | // has been started. |