Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/liatrio/devops-bootcamp-notes-template

Mirror of bootcamp chapters and exercises to serve as a place to put notes
https://github.com/liatrio/devops-bootcamp-notes-template

apprentice-program

Last synced: 8 days ago
JSON representation

Mirror of bootcamp chapters and exercises to serve as a place to put notes

Awesome Lists containing this project

README

        

This is a template repo for Apprentices to use to store their notes and code that they accumulate while going through the bootcamp.

This template was created with the following bash command. Being ran in this directory

```bash
$ export PATH_TO_BOOTCAMP=;tree -if -L 3 -I node_modules $PATH_TO_BOOTCAMP | rg "docs.*\.md$" | rg --invert-match "addendum|_sidebar|README|contributors" | sed "s|^$PATH_TO_BOOTCAMP/docs/||" | sed 's|.md||' | xargs mkdir -p

$ tree -ifd | xargs -I {} touch "{}/.gitkeep"
```