Backend Stability, Basically functional.

This commit is contained in:
2025-10-27 12:38:22 +08:00
parent d0d3373b3b
commit 4ea30cc12e
59 changed files with 5034 additions and 35 deletions

View File

@@ -0,0 +1,26 @@
@echo off
REM Load environment variables from .env file and run Spring Boot application
echo Loading environment from .env file...
REM Read .env file and set environment variables
for /f "usebackq tokens=1,* delims==" %%a in (".env") do (
REM Skip comments and empty lines
echo %%a | findstr /r "^#" >nul
if errorlevel 1 (
if not "%%a"=="" (
set "%%a=%%b"
)
)
)
echo.
echo Starting Group Ironmen Backend...
echo Database: %DB_USER%@%DB_HOST%:%DB_PORT%/%DB_NAME%
echo Server Port: %SERVER_PORT%
echo.
REM Run the application
gradlew.bat bootRun
pause