File size: 10,125 Bytes
b942eae | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | #!/usr/bin/env bash
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# β KomposIn β Non-Docker Setup untuk Azure VM β
# β Instalasi: Python backend + Next.js frontend + Nginx β
# β Jalankan: bash setup-nondocker.sh β
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
set -euo pipefail
RED='\033[0;31m'; GREEN='\033[0;32m'; YELLOW='\033[1;33m'
BLUE='\033[0;34m'; BOLD='\033[1m'; NC='\033[0m'
log() { echo -e "${BLUE}[$(date +'%H:%M:%S')]${NC} $*"; }
ok() { echo -e " ${GREEN}β${NC} $*"; }
warn() { echo -e " ${YELLOW}β ${NC} $*"; }
err() { echo -e " ${RED}β $*${NC}"; exit 1; }
echo -e "\n${BOLD}${BLUE}ββββββββββββββββββββββββββββββββββββββββββ${NC}"
echo -e "${BOLD}${BLUE}β ποΈ KomposIn Setup β${NC}"
echo -e "${BOLD}${BLUE}ββββββββββββββββββββββββββββββββββββββββββ${NC}\n"
# ββ 0. Cek privilege ββββββββββββββββββββββββββββββββββββββββ
[ "$EUID" -eq 0 ] || err "Script ini harus dijalankan dengan sudo"
# ββ 1. System update ββββββββββββββββββββββββββββββββββββββββ
log "Update sistem..."
apt-get update && apt-get upgrade -y
# ββ 2. Install dependencies βββββββββββββββββββββββββββββββββ
log "Menginstall system libraries..."
apt-get install -y \
python3.11 python3.11-venv python3-pip \
nodejs npm \
nginx \
git git-lfs \
curl wget \
build-essential libssl-dev
ok "System packages terinstall"
# ββ 3. Setup user & direktori βββββββββββββββββββββββββββββββ
log "Setup user dan direktori..."
getent passwd komposin >/dev/null 2>&1 || {
useradd -m -s /bin/bash -d /home/komposin komposin
ok "User komposin dibuat"
}
mkdir -p /opt/komposin /var/log/komposin
chown -R komposin:komposin /opt/komposin /var/log/komposin
chmod 0755 /opt/komposin /var/log/komposin
# ββ 4. Clone dan setup backend ββββββββββββββββββββββββββββββ
log "Setup FastAPI backend..."
cd /opt/komposin
# Jika folder sudah ada, pull terbaru; jika belum, clone
if [ -d "fpAI-komposin" ]; then
cd fpAI-komposin
git pull hf main 2>/dev/null || warn "git pull gagal"
else
git clone https://huggingface.co/KomposIn-Team/fpAI-komposin fpAI-komposin
cd fpAI-komposin
fi
git lfs pull
# Buat virtual environment Python
cd /opt/komposin/fpAI-komposin/be
[ -d "venv" ] && rm -rf venv
python3.11 -m venv venv
source venv/bin/activate
# Install Python dependencies (CPU-only torch)
pip install --upgrade pip
pip install --extra-index-url https://download.pytorch.org/whl/cpu torch torchvision
pip install -r requirements.txt
ok "FastAPI backend ready"
# ββ 5. Setup frontend βββββββββββββββββββββββββββββββββββββββ
log "Setup Next.js frontend..."
cd /opt/komposin/fpAI-komposin/fe
# Cek dan set next.config.ts jika belum ada output: standalone
if ! grep -q "output.*standalone" next.config.ts 2>/dev/null; then
warn "next.config.ts belum punya output: 'standalone'"
warn "Tambahkan baris ini ke next.config.ts:"
warn " output: 'standalone',"
fi
npm install
npm run build
ok "Next.js frontend build selesai"
# ββ 6. Setup Nginx ββββββββββββββββββββββββββββββββββββββββββ
log "Setup Nginx..."
cat > /etc/nginx/sites-available/komposin <<'EOF'
upstream backend {
server 127.0.0.1:8000;
keepalive 16;
}
upstream frontend {
server 127.0.0.1:3000;
keepalive 32;
}
server {
listen 80 default_server;
server_name _;
client_max_body_size 20M;
# Rate limiting
limit_req_zone $binary_remote_addr zone=api:10m rate=10r/s;
limit_req_zone $binary_remote_addr zone=web:10m rate=30r/s;
# API proxy
location /api/ {
limit_req zone=api burst=30 nodelay;
rewrite ^/api/(.*) /$1 break;
proxy_pass http://backend;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 180s;
proxy_connect_timeout 10s;
proxy_send_timeout 60s;
}
# Frontend proxy
location / {
limit_req zone=web burst=50 nodelay;
proxy_pass http://frontend;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 60s;
}
}
EOF
# Enable site dan disable default
ln -sf /etc/nginx/sites-available/komposin /etc/nginx/sites-enabled/
rm -f /etc/nginx/sites-enabled/default
# Test & restart
nginx -t || err "Nginx config error"
systemctl enable nginx
systemctl restart nginx
ok "Nginx configured dan running"
# ββ 7. Buat systemd units ββββββββββββββββββββββββββββββββββ
log "Setup systemd services..."
# Backend unit
cat > /etc/systemd/system/komposin-backend.service <<EOF
[Unit]
Description=KomposIn FastAPI Backend
After=network.target
Wants=komposin-backend.service
[Service]
Type=simple
User=komposin
Group=komposin
WorkingDirectory=/opt/komposin/fpAI-komposin/be
Environment="PATH=/opt/komposin/fpAI-komposin/be/venv/bin"
Environment="PYTHONDONTWRITEBYTECODE=1"
Environment="MODEL_PATH=/opt/komposin/fpAI-komposin/model/waste_segmentor_yolo26/waste_yolo26seg_best.pt"
ExecStart=/opt/komposin/fpAI-komposin/be/venv/bin/uvicorn main:app \
--host 127.0.0.1 \
--port 8000 \
--workers 1 \
--access-log
StandardOutput=journal
StandardError=journal
Restart=on-failure
RestartSec=10s
[Install]
WantedBy=multi-user.target
EOF
# Frontend unit
cat > /etc/systemd/system/komposin-frontend.service <<EOF
[Unit]
Description=KomposIn Next.js Frontend
After=network.target
[Service]
Type=simple
User=komposin
Group=komposin
WorkingDirectory=/opt/komposin/fpAI-komposin/fe
Environment="NODE_ENV=production"
Environment="PORT=3000"
Environment="HOSTNAME=127.0.0.1"
ExecStart=/usr/bin/node /opt/komposin/fpAI-komposin/fe/.next/standalone/server.js
StandardOutput=journal
StandardError=journal
Restart=on-failure
RestartSec=10s
[Install]
WantedBy=multi-user.target
EOF
# Reload systemd & enable
systemctl daemon-reload
systemctl enable komposin-backend.service komposin-frontend.service
ok "Systemd units created"
# ββ 8. Start services ββββββββββββββββββββββββββββββββββββββ
log "Memulai services..."
systemctl start komposin-backend.service
systemctl start komposin-frontend.service
sleep 5
# Check status
echo ""
log "Status service:"
systemctl status komposin-backend.service --no-pager | grep -E "Active|Main PID"
systemctl status komposin-frontend.service --no-pager | grep -E "Active|Main PID"
# ββ 9. Verify ββββββββββββββββββββββββββββββββββββββββββββββ
log "Verifying setup..."
sleep 3
BACKEND_OK=false
FRONTEND_OK=false
curl -f http://127.0.0.1:8000/health >/dev/null 2>&1 && BACKEND_OK=true || true
curl -f http://127.0.0.1:3000 >/dev/null 2>&1 && FRONTEND_OK=true || true
[ "$BACKEND_OK" = true ] && ok "Backend responding" || warn "Backend tidak respond"
[ "$FRONTEND_OK" = true ] && ok "Frontend responding" || warn "Frontend tidak respond"
# ββ Final status βββββββββββββββββββββββββββββββββββββββββββ
PUBLIC_IP=$(curl -s --max-time 5 ifconfig.me 2>/dev/null || \
curl -s --max-time 5 api.ipify.org 2>/dev/null || \
hostname -I | awk '{print $1}')
echo ""
echo -e "\n${GREEN}${BOLD}ββββββββββββββββββββββββββββββββββββββββββββ${NC}"
echo -e "${GREEN}${BOLD} β
KomposIn Non-Docker siap!${NC}"
echo -e "${GREEN}${BOLD}ββββββββββββββββββββββββββββββββββββββββββββ${NC}\n"
echo -e " π Aplikasi : ${GREEN}http://${PUBLIC_IP}${NC}"
echo -e " π‘ API Docs : ${GREEN}http://${PUBLIC_IP}/api/docs${NC}"
echo -e " π Project dir : ${GREEN}/opt/komposin/fpAI-komposin${NC}"
echo -e " π Backend log : journalctl -u komposin-backend.service -f"
echo -e " π Frontend log: journalctl -u komposin-frontend.service -f"
echo -e " π Restart : systemctl restart komposin-{backend,frontend}.service"
echo -e " π Stop : systemctl stop komposin-{backend,frontend}.service\n"
echo -e "${YELLOW}Pastikan port 80 sudah dibuka di Azure NSG (Network Security Group)!${NC}"
echo -e "${YELLOW}Buka: portal.azure.com β VM β Networking β Add inbound rule β Port 80${NC}\n"
|