This commit is contained in:
2026-05-27 11:44:10 -04:00
commit 414f85ad05
31452 changed files with 3580409 additions and 0 deletions

10
lib/config.php Normal file
View File

@ -0,0 +1,10 @@
<?php
// configure database connection
defined("DB_HOST") ? null : define("DB_HOST", "127.0.0.1");
defined("DB_USER") ? null : define("DB_USER", "root");
defined("DB_PASSWORD") ? null : define("DB_PASSWORD", "root_password");
defined("DB_NAME") ? null : define("DB_NAME", "db");
?>