| Contributor | Aryan Nanda |
| Organization | BeagleBoard.org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NODE_OPTIONS="--max-old-space-size=4096" yarn start:dev ─╯ | |
| yarn run v1.22.19 | |
| warning ../../../../package.json: No license field | |
| $ yarn;yarn secretsfoundry run -s "nest start --watch" | |
| warning ../../../../package.json: No license field | |
| [1/5] 🔍 Validating package.json... | |
| [2/5] 🔍 Resolving packages... | |
| warning Resolution field "[email protected]" is incompatible with requested version "form-data@^2.5.0" | |
| warning Resolution field "[email protected]" is incompatible with requested version "form-data@~2.3.2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -e | |
| red=`tput setaf 1` | |
| green=`tput setaf 2` | |
| blue=`tput setaf 4` | |
| reset=`tput sgr0` | |
| echo "Installing ESP IDF" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| echo "Installations Started" | |
| # Clone Pixels_Seminar Repository | |
| if [ ! -d "$HOME/Pixels_Seminar" ]; then | |
| cd "$HOME" || (echo "Error: Could not navigate to Home" && exit 1) | |
| echo "Cloning Pixels_Seminar" | |
| git clone https://github.com/SRA-VJTI/Pixels_Seminar.git || (echo "Error: Could not clone repository" && exit 1) | |
| else | |
| echo "You have already Cloned Pixels_Seminar!" | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| echo "installing ESP IDF" | |
| _shell_="${SHELL#${SHELL%/*}/}" | |
| # Check whether esp-idf has already been installed | |
| if [ -d $HOME/esp/esp-idf ]; then | |
| echo "You already have installed esp-idf!" | |
| else | |
| # System Detection and ESP-IDF Installation | |
| unameOut="$(uname -s)" |
