chore: remove bun.lock file, update package.json for workspace configuration, and adjust dependencies across apps and packages

This commit is contained in:
2025-10-27 11:06:59 -03:00
parent 6bfc0c2ced
commit 929633492d
29 changed files with 6964 additions and 602 deletions

25
INSTALAR.bat Normal file
View File

@@ -0,0 +1,25 @@
@echo off
echo ====================================
echo INSTALANDO PROJETO SGSE COM NPM
echo ====================================
echo.
cd "C:\Users\Deyvison\OneDrive\Desktop\Secretaria de Esportes\Tecnologia da Informacao\SGSE\sgse-app"
echo Instalando...
npm install --legacy-peer-deps
echo.
echo ====================================
if exist node_modules (
echo INSTALACAO CONCLUIDA!
echo.
echo Proximo passo:
echo Terminal 1: cd packages\backend e npx convex dev
echo Terminal 2: cd apps\web e npm run dev
) else (
echo ERRO NA INSTALACAO
)
echo ====================================
pause