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: 25 days ago
JSON representation
Mirror of bootcamp chapters and exercises to serve as a place to put notes
- Host: GitHub
- URL: https://github.com/liatrio/devops-bootcamp-notes-template
- Owner: liatrio
- Created: 2023-06-05T21:15:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-09T16:51:22.000Z (over 1 year ago)
- Last Synced: 2025-04-23T17:58:44.843Z (10 months ago)
- Topics: apprentice-program
- Language: HCL
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
```