adding settings sample file
This commit is contained in:
16
settings-sample.php
Normal file
16
settings-sample.php
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
class Settings
|
||||||
|
{
|
||||||
|
const DB_SERVER = 'localhost';
|
||||||
|
const DB_LOGIN = '';
|
||||||
|
const DB_PASS = '';
|
||||||
|
const DB_NAME = 'mythoughts';
|
||||||
|
const DB_ENC = 'utf8mb4';
|
||||||
|
const TEXT_ENC = 'UTF-8';
|
||||||
|
const TIMEZONE = 'Pacific/Auckland';
|
||||||
|
const API_KEY = 'MY_API_KEY';
|
||||||
|
const DEBUG = true; //prod: false, dev: true
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Reference in New Issue
Block a user