نسخة كاملة من مستودع سيرو عند 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>
30 lines
855 B
PHP
Executable File
30 lines
855 B
PHP
Executable File
<?php
|
|
function loadEnvironment($env_file = null) {
|
|
|
|
if ($env_file && file_exists($env_file)) {
|
|
// use provided path
|
|
} else {
|
|
$env_file = '/home/intaleq-walletintaleq/env/.env';
|
|
if (!file_exists($env_file)) {
|
|
$env_file = __DIR__ . '/../.env';
|
|
}
|
|
}
|
|
|
|
if (!file_exists($env_file)) {
|
|
error_log("❌ .env not found: $env_file");
|
|
return false;
|
|
}
|
|
|
|
$lines = file($env_file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
|
|
foreach ($lines as $line) {
|
|
$line = trim($line);
|
|
if (empty($line) || strpos($line, '#') === 0) continue;
|
|
$parts = explode('=', $line, 2);
|
|
if (count($parts) === 2) {
|
|
[$keyName, $value] = $parts;
|
|
$value = trim($value, "'\"");
|
|
putenv("$keyName=$value");
|
|
}
|
|
}
|
|
return true;
|
|
} |