18 lines
355 B
PHP
Executable File
18 lines
355 B
PHP
Executable File
<?php
|
|
|
|
class Settings
|
|
{
|
|
const HOST_SERVER = 'http(s)://your.domain.tld';
|
|
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 MAPBOX_KEY = '';
|
|
const IGN_FR_KEY = '';
|
|
const LINZ_KEY = '';
|
|
const DEBUG = true;
|
|
}
|