feat: detail page attachments, preview, and file metadata

Add file displayName/sortOrder APIs, result preview with Excel/video support,
unified attachment/link editing, feedback modal, and AuthProvider fix.
Run prisma migrate deploy on Render builds.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
EENE Dashboard
2026-06-05 18:32:56 +09:00
parent c3f620a7ac
commit 9abb58e5c8
22 changed files with 1477 additions and 292 deletions

View File

@@ -1,15 +1,20 @@
@echo off
chcp 65001 > nul
title EENE Dashboard Stop
title EENE Dashboard - Stop
cd /d "%~dp0"
echo ================================
echo EENE Dashboard - Server Stop
echo ================================
echo.
echo [1/1] Stopping Frontend / Backend...
taskkill /fi "WindowTitle eq EENE-Backend*" /f > nul 2>&1
taskkill /fi "WindowTitle eq EENE-Frontend*" /f > nul 2>&1
echo [1/2] Closing server window...
taskkill /fi "WindowTitle eq EENE Dashboard - Running*" /f > nul 2>&1
echo Done.
echo.
echo [2/2] Stopping API / WEB (ports 4000, 3000, 3001)...
powershell -NoProfile -ExecutionPolicy Bypass -Command "Get-NetTCPConnection -State Listen -ErrorAction SilentlyContinue | Where-Object { @(4000,3000,3001) -contains $_.LocalPort } | ForEach-Object { Stop-Process -Id $_.OwningProcess -Force -ErrorAction SilentlyContinue }" > nul 2>&1
echo Done.
echo.