28 lines
453 B
PHP
28 lines
453 B
PHP
<?php
|
|
ini_set('display_errors', 1);
|
|
ini_set('display_startup_errors', 1);
|
|
error_reporting(E_ALL);
|
|
|
|
define("SITE_CONFIG",
|
|
[
|
|
"database" =>
|
|
[
|
|
"host" => "127.0.0.1",
|
|
"schema" => "polygon",
|
|
"username" => "root",
|
|
"password" => ""
|
|
],
|
|
|
|
"site" =>
|
|
[
|
|
"name" => "Project Polygon",
|
|
"name_secondary" => "Polygon",
|
|
"currencyName" => "Pizzas"
|
|
],
|
|
|
|
"captcha" =>
|
|
[
|
|
"siteKey" => "undefined",
|
|
"privateKey" => "undefined"
|
|
]
|
|
]); |