├── .gitignore ├── .gitpod.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── TUTORIAL.md ├── coderoad.yaml ├── freeCodeCamp ├── .bashrc └── test │ ├── .cwd │ └── .next_command └── tutorial.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/learn-bash-by-building-a-boilerplate/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/learn-bash-by-building-a-boilerplate/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/learn-bash-by-building-a-boilerplate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/learn-bash-by-building-a-boilerplate/HEAD/TUTORIAL.md -------------------------------------------------------------------------------- /coderoad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/learn-bash-by-building-a-boilerplate/HEAD/coderoad.yaml -------------------------------------------------------------------------------- /freeCodeCamp/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/learn-bash-by-building-a-boilerplate/HEAD/freeCodeCamp/.bashrc -------------------------------------------------------------------------------- /freeCodeCamp/test/.cwd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freeCodeCamp/test/.next_command: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/learn-bash-by-building-a-boilerplate/HEAD/tutorial.json --------------------------------------------------------------------------------