feat: add PowerShell scripts for building and deploying Zen MCP Server; update .dockerignore and README. Fix error in API key detection in Docker deployment script.

This commit is contained in:
OhMyApps
2025-06-27 20:47:15 +02:00
parent 62178aa073
commit 308d42becf
5 changed files with 287 additions and 21 deletions

View File

@@ -27,20 +27,6 @@ check_env_vars() {
printf ' %s\n' "${required_vars[@]}"
exit 1
fi
local missing_vars=()
for var in "${required_vars[@]}"; do
if [[ -z "${!var:-}" ]]; then
missing_vars+=("$var")
fi
done
if [[ ${#missing_vars[@]} -gt 0 ]]; then
echo -e "${RED}Error: Missing required environment variables:${NC}"
printf ' %s\n' "${missing_vars[@]}"
echo -e "${YELLOW}Please set these variables in your .env file${NC}"
exit 1
fi
}
# Load environment variables