Material Symbols 아이콘 전환 + 로고 이미지 적용 + 테이블링 이름 유사도 체크
- 전체 인라인 SVG를 Google Material Symbols Rounded로 교체 - Icon 컴포넌트 추가, cuisine-icons 매핑 리팩토링 - Tasteby 핀 로고 이미지 적용 (라이트/다크 버전) - 테이블링/캐치테이블 이름 유사도 체크 및 리셋 API 추가 - 어드민 페이지 리셋 버튼 추가 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
16
frontend/dev-restart.sh
Executable file
16
frontend/dev-restart.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
# Build + restart dev server (standalone mode)
|
||||
set -euo pipefail
|
||||
cd "$(dirname "$0")"
|
||||
|
||||
echo "▶ Building..."
|
||||
npm run build
|
||||
|
||||
echo "▶ Copying static files to standalone..."
|
||||
cp -r .next/static .next/standalone/.next/static
|
||||
cp -r public .next/standalone/public 2>/dev/null || true
|
||||
|
||||
echo "▶ Restarting PM2..."
|
||||
pm2 restart tasteby-web
|
||||
|
||||
echo "✅ Done — http://localhost:3001"
|
||||
Reference in New Issue
Block a user