repo init

This commit is contained in:
2015-12-01 23:22:23 +01:00
commit 0363f4f272
8 changed files with 355 additions and 0 deletions

16
settings.php Executable file
View File

@@ -0,0 +1,16 @@
<?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;
}
?>