feat: team org panel, admin CRUD, local deploy tools, bidirectional data sync

Add TeamMember model and APIs, team status UI, /admin page, local server bats,
and scripts to sync data between local PostgreSQL and Render.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
EENE Dashboard
2026-06-06 01:41:00 +09:00
parent d14ff1997c
commit fb2956b0ac
45 changed files with 4104 additions and 376 deletions

View File

@@ -1,23 +1,3 @@
@echo off
chcp 65001 > nul
title EENE Dashboard - Stop
cd /d "%~dp0"
echo ================================
echo EENE Dashboard - Server Stop
echo ================================
echo.
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.
echo All servers stopped.
echo (PostgreSQL keeps running as Windows service)
pause
call "%~dp0stop-server.bat" %*