From 296514fa75197e594f1dd31d1ec42dc9f4b828eb Mon Sep 17 00:00:00 2001 From: Miguel Villa Floran Date: Fri, 1 Sep 2023 04:32:56 -0700 Subject: [PATCH] Explain new files --- README.md | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4d5afa1..456157d 100644 --- a/README.md +++ b/README.md @@ -86,18 +86,24 @@ See the [open issues]( ``` . ansible/ -├── .ssh - ssh configuration files -├── auth_codes - auth codes for various services -├── meta - metadata regarding this project for Ansible Galaxy -├── molecule - molecule tests -│ └── default +├── .ssh/ - ssh configuration files +├── auth_codes/ - auth codes for various services +├── meta/ - metadata regarding this project for Ansible Galaxy +├── molecule/ - molecule tests +│ └── default/ - default molecule scenario │ ├── converge.yml - main ansible playbook │ ├── molecule.yml - molecule configuration │ └── verify.yml - molecule verification -├── tasks - various ansible tasks +├── tasks/ - various ansible tasks +├── vars/ - various ansible variables +├── .ansible-lint - ansible-lint configuration +├── .editorconfig - editorconfig configuration +├── .yamllint - yamllint configuration +├── Dockerfile - dockerfile for molecule tests ├── README.md - you are here -├── ansible-run - entry point that install ansible and runs the playbook -└── local.yml - ansible playbook to run locally +├── ansible-install - entry point that install ansible and runs the playbook +├── local.yml - ansible playbook to run locally +└── nvim.Dockerfile - dockerfile for neovim ```