ConfigExists determines if a DDEV config file exists for this application.
()
| 1577 | |
| 1578 | // ConfigExists determines if a DDEV config file exists for this application. |
| 1579 | func (app *DdevApp) ConfigExists() bool { |
| 1580 | if _, err := os.Stat(app.ConfigPath); os.IsNotExist(err) { |
| 1581 | return false |
| 1582 | } |
| 1583 | return true |
| 1584 | } |
| 1585 | |
| 1586 | // AppTypePrompt handles the Type workflow. |
| 1587 | func (app *DdevApp) AppTypePrompt() error { |
no outgoing calls
no test coverage detected