20 lines
707 B
Batchfile
20 lines
707 B
Batchfile
@echo off
|
|
rem ============================================================
|
|
rem Natural Memory v2 — 站点启动脚本(Windows)
|
|
rem 默认监听 127.0.0.1:7443,仅本机可达,供反向代理使用
|
|
rem ============================================================
|
|
setlocal
|
|
cd /d "%~dp0"
|
|
|
|
set NM_HOST=%NM_HOST%
|
|
if "%NM_HOST%"=="" set NM_HOST=127.0.0.1
|
|
set NM_PORT=%NM_PORT%
|
|
if "%NM_PORT%"=="" set NM_PORT=7443
|
|
|
|
rem 优先使用项目常用的 conda 环境,其次退回 PATH 里的 python
|
|
set PYBIN=C:\Program Files\python\python.exe
|
|
if not exist "%PYBIN%" set PYBIN=python
|
|
|
|
echo Starting Natural Memory v2 site on http://%NM_HOST%:%NM_PORT%/
|
|
"%PYBIN%" server.py --host %NM_HOST% --port %NM_PORT%
|