This commit is contained in:
2015-10-06 21:18:39 +02:00
commit 120f19752b
4 changed files with 598 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 = '';
const DB_PASS = '';
const DB_NAME = 'pedidor';
const DB_ENC = 'utf8mb4';
const TEXT_ENC = 'UTF-8';
const TIMEZONE = 'Europe/Paris';
const API_KEY = '';
const DEBUG = true;
}
?>