From 5bc793cee2a82e977d1b5300f1e611e00c0fab38 Mon Sep 17 00:00:00 2001 From: Tim van Gompel Date: Tue, 22 Feb 2022 09:59:00 +0100 Subject: [PATCH] fix(README): fix indentation in sample config The provided .lando.mutagen.yml contains incorrect syntax/indentation. This causes errors, that prevents the Lando project from starting. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4fd43fe..1f82dbb 100644 --- a/README.md +++ b/README.md @@ -51,10 +51,10 @@ Lando will now load the plugin automatically on any `lando` CLI command. You can defaults: flushOnCreate: true ignore: - vcs: false + vcs: false permissions: - defaultFileMode: 644 - defaultDirectoryMode: 755 + defaultFileMode: 644 + defaultDirectoryMode: 755 ``` 4. Run `lando start`. This might take some time due to the file syncs. 5. Profit! File changes in the `excludes` directories will now be synced back to the host and you can enjoy close-to linux-native Docker filesystem performance.