From 56a3a5e3103ff797f38f4885ef7e4aa2f531214b Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sat, 24 Aug 2019 02:21:34 -0400 Subject: [PATCH 1/2] Update README --- README.md | 76 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 39 insertions(+), 37 deletions(-) diff --git a/README.md b/README.md index a532662..de08d51 100644 --- a/README.md +++ b/README.md @@ -13,43 +13,45 @@ All snippets will be listed below with the directories in the master branch. If ``` https://github.com/shaunrd0/... - klips/ -├──── ansible/ (Ansible roles, playbooks) -│ │ -│ ├── nginx.yml (Playbook example for using nginx role) -│ │ -│ ├── hosts (Same ansible hosts file) -│ │ -│ ├── apt-up.yml (Playbook to update servers / groups ad hoc) -│ │ -│ └──roles -│ └── nginx (Basic ansible role created with ansible-galaxy command) -│ -│ -├──── plates/ -│ ├── cpp-cmake (Simple cpp executable template, built using cmake) -│ │ -│ └── cpp-launcher (Simple cpp launcher template, built using cmake. Easily expandable.) -│ -├──── refs/ -│ └── doxygenROT (Basic rule-of-thumb for Doxygen commenting) -│ -├──── scripts/ -│ ├── cmake-build.sh (Script to toss around and build cmake projects) -│ │ -│ ├── setup-vim.sh (Script for setting up vim configuration) -│ │ -│ └── README.md (Any instructions that might be needed for the scripts within this directory) -│ -├──── configs/ -│ ├──.vimrc (Various settings for vim, can be copied or used with setup-vim.sh) - │ - └──.vimrc-README (What these settings do, output when setup-vim.sh is ran.) - -# Copy / paste below symbols for editing this README / updating hierarchy - - │ ├ ─ └ - +├── ansible +│   ├── apt-up.yml +│   ├── hosts +│   ├── nginx.yml +│   └── roles +├── configs +├── plates +│   ├── cpp-cmake +│   └── cpp-launcher +├── README.md +├── refs +│   └── doxygenROT +└── scripts + ├── cmake-build.sh + ├── README.md + └── setup-vim.sh ``` +ansible (Ansible roles, playbooks) + - nginx.yml (Playbook example for using nginx role) + - hosts (Same ansible hosts file) + - apt-up.yml (Playbook to update servers / groups ad hoc) + - roles (Basic ansible role created with ansible-galaxy command) + -- nginx + +plates (Simple cpp executable template, built using cmake) + - cpp-cmake + - cpp-launcher (Simple cpp launcher template, built using cmake. Easily expandable.) + +refs + - doxygenROT (Basic rule-of-thumb for Doxygen commenting) + +scripts + - cmake-build.sh (Script to toss around and build cmake projects) + - README.md + - setup-vim.sh (Script for setting up vim configuration) + +configs + - .vimrc (Various settings for vim, can be copied or used with setup-vim.sh) + - .vimrc-README (What these settings do, output when setup-vim.sh is ran.) + From e0693471128c4efb3de6cc82f7174153b9fd7aab Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sat, 24 Aug 2019 02:29:00 -0400 Subject: [PATCH 2/2] README update --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index de08d51..d3a69e4 100644 --- a/README.md +++ b/README.md @@ -32,26 +32,26 @@ klips/ └── setup-vim.sh ``` -ansible (Ansible roles, playbooks) - - nginx.yml (Playbook example for using nginx role) - - hosts (Same ansible hosts file) - - apt-up.yml (Playbook to update servers / groups ad hoc) - - roles (Basic ansible role created with ansible-galaxy command) +ansible - Ansible roles, playbooks + - nginx.yml - Playbook example for using nginx role + - hosts - Same ansible hosts file + - apt-up.yml - Playbook to update servers / groups ad hoc + - roles - Basic ansible role created with ansible-galaxy command -- nginx -plates (Simple cpp executable template, built using cmake) - - cpp-cmake - - cpp-launcher (Simple cpp launcher template, built using cmake. Easily expandable.) +plates + - cpp-cmake - Simple cpp executable template, built using cmake + - cpp-launcher - Simple cpp launcher template, built using cmake. Easily expandable. refs - - doxygenROT (Basic rule-of-thumb for Doxygen commenting) + - doxygenROT - Basic rule-of-thumb for Doxygen commenting scripts - - cmake-build.sh (Script to toss around and build cmake projects) - - README.md - - setup-vim.sh (Script for setting up vim configuration) + - cmake-build.sh - Script to toss around and build cmake projects + - README.md - Further clarification of scripts + - setup-vim.sh - Script for setting up vim configuration configs - - .vimrc (Various settings for vim, can be copied or used with setup-vim.sh) - - .vimrc-README (What these settings do, output when setup-vim.sh is ran.) + - .vimrc - Various settings for vim, can be copied or used with setup-vim.sh) + - .vimrc-README - What these settings do, output when setup-vim.sh is ran.)