Initialize ESP32 project from a very simple template.
Clone this repository.
$ git clone https://github.com/alwint3r/esp32proj.git ~/esp32projHere I cloned the repository to the esp32proj directory inside home directory.
Next, set the ESP32PROJ_PATH environment variable with the path to esp32proj directory.
$ export ESP32PROJ_PATH=$HOME/esp32projNext append the value of ESP32PROJ_PATH environment variable to the PATH environment variable.
$ export PATH=$PATH:$ESP32PROJ_PATHIt's better to append those two lines to the .bash_profile or .profile or .bash_rc file inside the home directory.
esp32proj_init.sh [PROJECT_NAME]esp32proj_init.sh ./blinkingThis will create blinking project folder under the current working directory.