IsMutagenEnabled returns true if Mutagen is enabled locally or globally It's also required and set if NoBindMounts is set, since we have to have a way to get code on there.
()
| 765 | // It's also required and set if NoBindMounts is set, since we have to have a way |
| 766 | // to get code on there. |
| 767 | func (app *DdevApp) IsMutagenEnabled() bool { |
| 768 | return app.GetPerformanceMode() == types.PerformanceModeMutagen || globalconfig.DdevGlobalConfig.NoBindMounts |
| 769 | } |
| 770 | |
| 771 | // GetMutagenVolumeLabel returns the com.ddev.volume-signature on the project_mutagen Docker volume |
| 772 | func GetMutagenVolumeLabel(app *DdevApp) (string, error) { |