Move php classes

This commit is contained in:
2023-11-11 17:12:41 +01:00
parent 55e40f76a1
commit 2f3a3f9561
6 changed files with 17 additions and 115 deletions

20
config/settings-sample.php Executable file
View File

@@ -0,0 +1,20 @@
<?php
class Settings
{
const DB_SERVER = 'localhost';
const DB_LOGIN = '';
const DB_PASS = '';
const DB_NAME = 'spot';
const DB_ENC = 'utf8mb4';
const TEXT_ENC = 'UTF-8';
const TIMEZONE = 'Europe/Paris';
const MAIL_SERVER = '';
const MAIL_FROM = '';
const MAIL_USER = '';
const MAIL_PASS = '';
const WEATHER_TOKEN = ''; //visualcrossing.com
const TIMEZONE_USER = ''; //geonames.org
const DEBUG = true;
const LOG_FOLDER = __DIR__;
}