update: 2026-03-28 20:59

This commit is contained in:
2026-03-28 20:59:52 +08:00
parent e21d58e603
commit 1c81d4e6ea
611 changed files with 27847 additions and 65061 deletions

15
dev.bat Normal file
View File

@@ -0,0 +1,15 @@
@echo off
chcp 65001 >nul
title InfoGenie Dev Launcher
echo [InfoGenie] 启动本地开发环境...
:: 启动后端(新窗口)
start "InfoGenie-Backend" cmd /k "cd /d %~dp0infogenie-backend-go && set APP_ENV=development && go run ./cmd/server/"
:: 启动前端(新窗口)
start "InfoGenie-Frontend" cmd /k "cd /d %~dp0infogenie-frontend && npm start"
echo [InfoGenie] 前后端已在独立窗口启动
echo 后端: http://localhost:5002
echo 前端: http://localhost:3000