pour prod

This commit is contained in:
Loic Masi
2026-08-07 16:13:43 +02:00
commit 5fbf76868f
157 changed files with 24085 additions and 0 deletions

14
config.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
declare(strict_types=1);
return [
'db' => [
'host' => getenv('PTA_DB_HOST') ?: '127.0.0.1',
'port' => getenv('PTA_DB_PORT') ?: '3306',
'name' => getenv('PTA_DB_NAME') ?: 'pta_test',
'user' => getenv('PTA_DB_USER') ?: 'root',
'pass' => getenv('PTA_DB_PASS') ?: '',
'charset' => 'utf8mb4',
],
];