1
0

Merge branch 'arch3rPro-1Panel-Appstore/only-apps' into patch/localApps

This commit is contained in:
pooneyy
2025-07-01 13:04:57 +08:00
parent 1d3f9e1835
commit 0b478b5196
252 changed files with 50131 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
if [[ -f ./.env ]]; then
if grep -q 'PANEL_APP_PORT_S3' ./.env; then
echo "PANEL_APP_PORT_S3 参数已存在"
else
echo 'PANEL_APP_PORT_S3=5426' >> ./.env
echo "已添加 PANEL_APP_PORT_S3=5426"
fi
else
echo ".env 文件不存在"
fi