From 7f3846934cfba564463a15549b4a24081a7c612b Mon Sep 17 00:00:00 2001 From: Yves Gugger Date: Wed, 17 Dec 2025 09:30:03 +0100 Subject: [PATCH] Add Yield Coming Soon banner, realistic feature review --- backend/scripts/sync_all_zones.py | 6 +++++- frontend/src/app/terminal/yield/page.tsx | 15 +++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/backend/scripts/sync_all_zones.py b/backend/scripts/sync_all_zones.py index 986b700..1ae9165 100644 --- a/backend/scripts/sync_all_zones.py +++ b/backend/scripts/sync_all_zones.py @@ -44,7 +44,11 @@ LOG_FILE = Path("/home/user/logs/zone_sync.log") COMPRESS_DOMAIN_LISTS = True # CZDS TLDs we have access to -CZDS_TLDS = ["app", "dev", "info", "online", "org", "xyz"] +# NOTE: .org and .xyz are temporarily disabled - too large for 2GB RAM server +# .org = 10M+ domains (~500MB RAM), .xyz = 8M+ domains (~400MB RAM) +# Enable when server has more RAM or we implement streaming to SQLite +CZDS_TLDS = ["app", "dev", "info", "online"] # Small/medium TLDs only +CZDS_TLDS_DISABLED = ["org", "xyz"] # Too large for current server # Switch.ch AXFR config SWITCH_CONFIG = { diff --git a/frontend/src/app/terminal/yield/page.tsx b/frontend/src/app/terminal/yield/page.tsx index 3001ec4..54490e5 100644 --- a/frontend/src/app/terminal/yield/page.tsx +++ b/frontend/src/app/terminal/yield/page.tsx @@ -466,6 +466,21 @@ export default function YieldPage() { + {/* FEATURE IN DEVELOPMENT BANNER */} +
+
+ +
+

+ Feature in Development Coming Soon +

+

+ We're building an automated yield system for your parked domains. Soon you'll be able to monetize idle domains with intelligent traffic routing. Stay tuned for updates! +

+
+
+
+ {/* CONTENT */}
{loading ? (