Files
spot/settings.php
2015-12-01 23:22:23 +01:00

16 lines
270 B
PHP
Executable File

<?php
class Settings
{
const DB_SERVER = 'localhost';
const DB_LOGIN = 'root';
const DB_PASS = '0nadmin';
const DB_NAME = 'spot';
const DB_ENC = 'utf8mb4';
const TEXT_ENC = 'UTF-8';
const TIMEZONE = 'Europe/Paris';
const API_KEY = '';
const DEBUG = true;
}
?>