You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
516 B

<?php
class Config {
public static $base = 'http://telegraph.dev/';
public static $ssl = false;
public static $secretKey = '000000000000000000000000000000000000000000000';
public static $clientID = 'http://telegraph.dev/';
public static $defaultAuthorizationEndpoint = 'https://indieauth.com/auth';
public static $errbitKey = '';
public static $errbitHost = '';
public static $db = [
'host' => '127.0.0.1',
'database' => 'telegraph',
'username' => 'root',
'password' => ''
];
}