Ship start/restart/pull-and-restart and deploy lib so production can one-line update; git_pull_hard uses checkout -f, restart --pull aligns then restarts.
37 lines
558 B
Plaintext
37 lines
558 B
Plaintext
# 运行时物理目录(Linux 一键脚本)
|
||
.runtime/
|
||
platform/data/uploads/
|
||
|
||
# 编译产物
|
||
platform/platform
|
||
platform/platform.exe
|
||
gateway/gateway
|
||
gateway/gateway.exe
|
||
|
||
# 依赖 / 缓存
|
||
web/node_modules/
|
||
**/__pycache__/
|
||
*.pyc
|
||
.venv/
|
||
.env
|
||
ai-service/.env
|
||
*.log
|
||
|
||
*.exe~
|
||
|
||
# 本地意见稿 / 不入库
|
||
database_fastapi修改意见.md
|
||
|
||
# Windows 本机启动脚本(不入库);Linux 一键脚本入库以便生产 pull 更新
|
||
start.bat
|
||
start.ps1
|
||
stop.bat
|
||
stop.ps1
|
||
restart.bat
|
||
restart.ps1
|
||
start-host.ps1
|
||
deploy-menu.sh
|
||
reload-config.sh
|
||
scripts/linux/
|
||
|