# Tutorial Instal & Update Cutiezy WhatsApp Gateway QR Only

## 1. Syarat Hosting

Hosting harus mendukung:

- cPanel dengan Setup Node.js App
- Node.js 20 atau 22
- npm
- MySQL / MariaDB
- Terminal cPanel
- Domain atau subdomain aktif HTTPS

Disarankan menggunakan Node.js 22 jika tersedia.

---

## 2. Struktur Folder Aman

Jangan taruh source aplikasi langsung di public_html.

Gunakan struktur seperti ini:

```txt
/home/USERNAME/wa-gateway-app
/home/USERNAME/public_html
cd ~/wa-gateway-app

cat > TUTORIAL_INSTALL_UPDATE.md <<'EOF'
# Tutorial Instal & Update Cutiezy WhatsApp Gateway QR Only

## 1. Syarat Hosting

Hosting harus mendukung:

- cPanel dengan Setup Node.js App
- Node.js 20 atau 22
- npm
- MySQL / MariaDB
- Terminal cPanel
- Domain atau subdomain aktif HTTPS

Disarankan menggunakan Node.js 22 jika tersedia.

---

## 2. Struktur Folder Aman

Jangan taruh source aplikasi langsung di public_html.

Gunakan struktur seperti ini:

```txt
/home/USERNAME/wa-gateway-app
/home/USERNAME/public_html
cd ~

mkdir -p backups

tar \
  --exclude='wa-gateway-app/node_modules' \
  --exclude='wa-gateway-app/.git' \
  -czf backups/wa-gateway-app-backup-$(date +%Y%m%d-%H%M%S).tar.gz \
  wa-gateway-app

ls -lh backups
