modifs.mineures sans commentaires

This commit is contained in:
Jephté Clain 2025-10-03 02:46:07 +04:00
parent e1d30984a4
commit d7f82a2fd9
2 changed files with 3 additions and 3 deletions

View File

@ -7,6 +7,6 @@ require __DIR__.'/@@CLI2PROJ@@/vendor/autoload.php';
const NULIB_APP_app_params = [
"projdir" => __DIR__.'/@@CLI2PROJ@@',
"appcode" => \app\config\bootstrap::APPCODE,
"projcode" => \app\config\bootstrap::PROJCODE,
];
require __DIR__.'/@@CLI2PROJ@@/vendor/nulib/base/php/src/app/cli/include-launcher.php';

View File

@ -5,14 +5,14 @@
# Lancer une application en tâche de fond
require __DIR__.'/@@SBIN2PROJ@@/vendor/autoload.php';
use cli\BgLauncherApp;
use nulib\app\app;
use nulib\cli\BgLauncherApp;
# chemin vers le lanceur PHP
const NULIB_APP_app_launcher = __DIR__.'/@@SBIN2PROJ@@/@@CLI@@/.launcher.php';
app::init([
"projdir" => __DIR__.'/@@SBIN2PROJ@@',
"appcode" => \app\config\bootstrap::APPCODE,
"projcode" => \app\config\bootstrap::PROJCODE,
]);
BgLauncherApp::run();