feat: rename project to kill-the-news, add GitHub Pages landing page

- Rename all references from Email-to-RSS/email-to-rss to kill-the-news
  across README.md, AGENTS.md, package.json, wrangler-example.toml, setup.sh
- Add docs/index.html: dark-themed landing page for GitHub Pages
  covering features, how it works, quick start, and tech stack

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Julien Herr
2026-05-21 20:45:25 +02:00
parent aede0c9d16
commit 6fddbd40f2
6 changed files with 607 additions and 12 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
set -euo pipefail
echo "🚀 Setting up Email to RSS service..."
echo "🚀 Setting up kill-the-news..."
if ! command -v npm >/dev/null 2>&1 || ! command -v npx >/dev/null 2>&1 || ! command -v node >/dev/null 2>&1; then
echo "❌ Error: Node.js (with npm and npx) is required but not found."
@@ -17,7 +17,7 @@ fi
WORKER_NAME="$(grep -E '^name = "' wrangler-example.toml | head -1 | cut -d'"' -f2)"
if [ -z "$WORKER_NAME" ]; then
WORKER_NAME="email-to-rss"
WORKER_NAME="kill-the-news"
fi
echo "📦 Installing dependencies..."