合并 agent-mvp 到 master #1

Merged
jiang merged 93 commits from agent-mvp into master 2026-08-18 17:56:43 +08:00
Showing only changes of commit 2af89eea1c - Show all commits
+1 -3
View File
@@ -128,8 +128,6 @@ jobs:
required_env_keys=(
ENVIRONMENT
NETWORK_NAME
SECRET_KEY
ENCRYPTION_KEY
DB_NAME
DB_HOST
DB_PORT
@@ -150,7 +148,7 @@ jobs:
missing_keys=()
for key in "${required_env_keys[@]}"; do
if ! grep -Eq "^[[:space:]]*${key}=" .env; then
if ! grep -Eq "^[[:space:]]*(export[[:space:]]+)?${key}[[:space:]]*=" .env; then
missing_keys+=("$key")
fi
done