نسخة كاملة من مستودع سيرو عند ecfe7568 لتكون أساس تطبيق «انطلق». نُسخ المتعقَّب في git فقط (12,509 ملفاً / 302 م.ب) بـ git archive، لا `cp -r` — فاستُثنيت تلقائياً مخلفات البناء (build · node_modules · .dart_tool · .gradle · Pods ≈ 10.7 غ.ب) وكل ما يستثنيه .gitignore. هذا الكوميت **بلا أي تعديل عمداً** حتى يكون كل ما يليه فرقاً مقروءاً مقابل سيرو الأصلي. سيرو نفسه لم يُمسّ. ⚠️ لا يبني بعد: `.env` و`lib/env/env.g.dart` غير متعقَّبين في سيرو (وهذا صحيح — أسرار لكل مستأجر). كل تطبيق فلاتر هنا يحتاج .env خاصاً بانطلق ثم توليد env.g.dart عبر build_runner. لا تُنسخ أسرار سيرو. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
19 lines
810 B
PHP
19 lines
810 B
PHP
<?php
|
|
require_once __DIR__ . '/../core/bootstrap.php';
|
|
$con = Database::get('main');
|
|
|
|
$platform = $_GET['platform'] ?? 'facebook';
|
|
$targetUrl = $_GET['target_url'] ?? null;
|
|
|
|
if ($targetUrl) {
|
|
$stmt = $con->prepare("INSERT INTO marketing_tasks (platform, type, status, target_url) VALUES (?, 'autonomous_scroll_and_reply', 'pending', ?)");
|
|
$stmt->execute([$platform, $targetUrl]);
|
|
} else {
|
|
$stmt = $con->prepare("INSERT INTO marketing_tasks (platform, type, status) VALUES (?, 'autonomous_scroll_and_reply', 'pending')");
|
|
$stmt->execute([$platform]);
|
|
}
|
|
|
|
echo "<h1>Task inserted successfully!</h1>";
|
|
echo "<p>A new 'autonomous_scroll_and_reply' task is now pending for $platform.</p>";
|
|
echo "<p>Please restart the Android app now. It will immediately pick up this task and start scrolling!</p>";
|