phase 0.3

This commit is contained in:
portakal 2026-06-04 20:51:20 +03:00
commit 4a94bfc4e7
52 changed files with 11653 additions and 0 deletions

17
run_admin.bat Normal file
View file

@ -0,0 +1,17 @@
@echo off
setlocal EnableDelayedExpansion
cd /d "%~dp0"
set "SKYRAMA_DSN=skyramaUser:Skyrama1234.@tcp(127.0.0.1:3306)/skyrama_clone?parseTime=true"
if not exist admin.exe (
echo [*] admin.exe not found, building...
go build -o admin.exe .\cmd\admin\
if errorlevel 1 ( echo [ERROR] Build failed. & pause & exit /b 1 )
)
admin.exe
echo.
echo [Admin exited - press any key to close]
pause >nul
endlocal