chore: initialize orderPRO with docs, i18n and scss asset pipeline

This commit is contained in:
2026-02-19 01:27:51 +01:00
commit 92bbe82614
44 changed files with 2722 additions and 0 deletions

12
config/auth.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
use App\Core\Support\Env;
return [
'admin_email' => Env::get('ADMIN_EMAIL', 'admin@orderpro.local'),
'admin_password_hash' => Env::get(
'ADMIN_PASSWORD_HASH',
'$2y$10$1eRQmrhEUWgKRZpG08dKOenG4eZrvLQnLdCUfKHrZ/5dzLvxpmRYC'
),
];