adding settings sample file
This commit is contained in:
17
settings-sample.php
Executable file
17
settings-sample.php
Executable file
@@ -0,0 +1,17 @@
|
||||
<?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 API_KEY = '';
|
||||
const MODE = Spot::MODE_BLOG; //Spot::MODE_HISTO/MODE_BLOG
|
||||
const DEBUG = true;
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user