You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@echo off
|
|
REM 酒店管理系统 - 后端启动脚本
|
|
|
|
cd /d "%~dp0\backend"
|
|
echo [INFO] Starting Hotel Management System Backend...
|
|
echo [INFO] Server will run on http://127.0.0.1:8000
|
|
echo.
|
|
|
|
python main.py
|
|
|
|
if %errorlevel% neq 0 (
|
|
echo [ERROR] Backend failed to start. Check the error message above.
|
|
pause
|
|
)
|