Initial commit

This commit is contained in:
2025-07-06 16:00:38 -07:00
commit 67d2fe9589
11 changed files with 957 additions and 0 deletions

6
config/connection.php Normal file
View File

@@ -0,0 +1,6 @@
<?php
$db_host = "localhost";
$db_port = 3306;
$db_user = "";
$db_pass = "";
$db_name = "";

3
config/encryption.php Normal file
View File

@@ -0,0 +1,3 @@
<?php
$SERVER_RECEIVE_TRANSFER_KEY = ""; //SERVER_SEND_TRANSFER_KEY on the client
$SERVER_SEND_TRANSFER_KEY = ""; //SERVER_RECEIVE_TRANSFER_KEY on the client

5
config/general.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
$latestVersion = "1.5.2";
$latestBetaVersion = "1.6-dev";
$allowedVersions = [$latestVersion];
$allowedDatabaseVersions = [$latestVersion];