GetConfigPath returns the path to an application config file specified by filename.
(filename string)
| 178 | |
| 179 | // GetConfigPath returns the path to an application config file specified by filename. |
| 180 | func (app *DdevApp) GetConfigPath(filename string) string { |
| 181 | return filepath.Join(app.AppRoot, ".ddev", filename) |
| 182 | } |
| 183 | |
| 184 | // GetProcessedProjectConfigYAML returns the processed project configuration as YAML |
| 185 | // This is equivalent to what 'ddev utility configyaml' shows - the project configuration |
no outgoing calls