MCPcopy Index your code
hub / github.com/ddev/ddev / PostConfigAction

Method PostConfigAction

pkg/ddevapp/apptypes.go:505–511  ·  view source on GitHub ↗

PostConfigAction gives a chance for an apptype to override do something at the end of ddev config.

()

Source from the content-addressed store, hash-verified

503// PostConfigAction gives a chance for an apptype to override do something at
504// the end of ddev config.
505func (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.

Callers 1

WriteConfigMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected