<aside> 🥊
sudo apt update
sudo apt install -y wget unzip
wget <https://services.gradle.org/distributions/gradle-8.3-bin.zip> -P /tmp
sudo unzip -d /opt/gradle /tmp/gradle-8.3-bin.zip
sudo vim /etc/profile.d/gradle.sh
export GRADLE_HOME=/opt/gradle/gradle-8.3
export PATH=$GRADLE_HOME/bin:$PATH
source /etc/profile.d/gradle.sh
sudo apt install openjdk-17-jdk -y
=> java 17버전일 경우
gradle --version
=> 자바 설치해야지 가능
----------------
해당 방법 아니면 4.4.3 옛 버전 설치
</aside>
<aside> 🧢
sudo apt install npm
npm install tailwindcss
ls -l /home/ubuntu/myblog/h/.gradle/npm/npm-v10.2.3/bin/npx
chmod +x /home/ubuntu/myblog/h/.gradle/npm/npm-v10.2.3/bin/npx
npx tailwindcss --version
</aside>
<aside> 🎁
curl -fsSL <https://deb.nodesource.com/setup_20.x> | sudo -E bash -
sudo apt install -y nodejs
=> Tailwind CSS 같은 최신 도구 지원 버전 - 20.x
</aside>
<aside> 🎭
Gradle, java version에 맞게 설치 이후 진행
-----------------------------------------
chmod +x ./gradlew
sudo ./gradlew build
</aside>