First commit

This commit is contained in:
GZod01 2025-02-10 17:16:17 +01:00
commit 4d6c5be99e
4 changed files with 378 additions and 0 deletions

9
env.php Normal file
View file

@ -0,0 +1,9 @@
<?php
$db_host = "localhost";
$db_usr = "";
$db_pass = "";
$db_db = "makernight_leaderboard";
$db_port = 3306;
if(file_exists("env_override.php")){
include "env_override.php";
}