This commit is contained in:
Shaun Reed 2019-08-29 05:55:51 +00:00
commit 9923228e7f
1 changed files with 39 additions and 37 deletions

View File

@ -13,43 +13,45 @@ All snippets will be listed below with the directories in the master branch. If
``` ```
https://github.com/shaunrd0/... https://github.com/shaunrd0/...
klips/ klips/
├──── ansible/ (Ansible roles, playbooks) ├── ansible
│ │ │   ├── apt-up.yml
│ ├── nginx.yml (Playbook example for using nginx role) │   ├── hosts
│ │ │   ├── nginx.yml
│ ├── hosts (Same ansible hosts file) │   └── roles
│ │ ├── configs
│ ├── apt-up.yml (Playbook to update servers / groups ad hoc) ├── plates
│ │ │   ├── cpp-cmake
│ └──roles │   └── cpp-launcher
│ └── nginx (Basic ansible role created with ansible-galaxy command) ├── README.md
├── refs
│   └── doxygenROT
├──── plates/ └── scripts
│ ├── cpp-cmake (Simple cpp executable template, built using cmake) ├── cmake-build.sh
│ │ ├── README.md
│ └── cpp-launcher (Simple cpp launcher template, built using cmake. Easily expandable.) └── setup-vim.sh
├──── 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 - 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
- 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
- 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.)