Reorganize file structure

This commit is contained in:
Pijus Kamandulis
2023-09-13 22:36:33 +03:00
parent 5ad55753cf
commit 6617d03a17
86 changed files with 847 additions and 829 deletions

13
src/includes/config.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
function GetConnectionToDB() {
//========SQL_CONFIG========//
$SQL_Host = getenv('SQL_HOST') ?: "localhost";
$SQL_Database = getenv('SQL_DB') ?: "palm-paste";
$SQL_User = getenv('SQL_USER') ?: "paste";
$SQL_Password = getenv('SQL_PASS') ?: "ckQgRJRhib74XMgVpzmn38uj1MrCcNnK7L9bc7zu";
//========CONNECTION========//
$conn = new PDO('mysql:host=' . $SQL_Host . ';dbname=' . $SQL_Database . ';charset=utf8mb4', $SQL_User, $SQL_Password);
return $conn;
}
//========CRON_JOBS=========//
$CRON_ExpireKey = getenv('CRON_EXPIREKEY') ?: "b1g51bf6g";