修改百度地图AK

This commit is contained in:
shenquanyi
2025-11-04 09:43:23 +08:00
parent 07bd3ce5da
commit eca2040e5b
80 changed files with 975 additions and 15841 deletions

21
backend/status.bat Normal file
View File

@@ -0,0 +1,21 @@
@echo off
REM 宁夏智慧养殖监管平台后端 - 状态查看脚本
REM 使用 PowerShell 脚本查看服务状态
echo ========================================
echo 宁夏智慧养殖监管平台后端服务
echo ========================================
echo.
REM 检查是否在正确的目录
if not exist "server.js" (
echo 错误: 请在 backend 目录下运行此脚本
pause
exit /b 1
)
REM 调用 PowerShell 脚本查看状态
powershell -ExecutionPolicy Bypass -File "node_manager.ps1" status
pause