fix: update GitHub Pages stats and fix Docker ARM64 build

GitHub Pages Fixes:
- Updated search-index.json stats from 2057 to 4343 workflows
- Updated index.html title from "2000+" to "4300+" workflows
- Updated tagline to show "4343" workflows
- The JavaScript loads stats from search-index.json, not stats.json

Docker ARM64 Fix:
- Added gcc and python3-dev to Dockerfile
- Required for building psutil wheel on ARM64 architecture
- This fixes: "error: command 'gcc' failed: No such file or directory"

The GitHub Pages should now correctly display:
- Total Workflows: 4,343
- Active Workflows: 434
- Integrations: 268
- Categories: 16

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
zie619
2025-11-03 22:08:18 +02:00
parent 87eb66ed7d
commit 54770f7865
3 changed files with 171 additions and 169 deletions

View File

@@ -16,11 +16,13 @@ ENV PYTHONUNBUFFERED=1 \
DEBIAN_FRONTEND=noninteractive \
PYTHONIOENCODING=utf-8
# Install security updates and minimal dependencies
# Install security updates and build dependencies for ARM64
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends \
ca-certificates \
gcc \
python3-dev \
&& apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /root/.cache \

File diff suppressed because it is too large Load Diff

View File

@@ -3,8 +3,8 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>N8N Workflow Collection - Search & Browse 2000+ Workflows</title>
<meta name="description" content="Browse and search through 2000+ n8n workflow automations. Find workflows for Telegram, Discord, Gmail, AI, and hundreds of other integrations.">
<title>N8N Workflow Collection - Search & Browse 4300+ Workflows</title>
<meta name="description" content="Browse and search through 4300+ n8n workflow automations. Find workflows for Telegram, Discord, Gmail, AI, and hundreds of other integrations.">
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>⚡</text></svg>">
<meta name="last-updated" content="2025-11-03T11:28:31.626239">
@@ -16,7 +16,7 @@
<span class="logo-emoji"></span>
N8N Workflow Collection
</h1>
<p class="tagline">Search & Browse <span id="total-count">2000+</span> Professional Automation Workflows</p>
<p class="tagline">Search & Browse <span id="total-count">4343</span> Professional Automation Workflows</p>
</div>
</header>