blob: b0dbab5825a2b28af12675438d713f1ed85ae7dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
class Config {
public static $hostname = 'indiepost.dev';
public static $gaid = '';
public static $dbHost = '127.0.0.1';
public static $dbName = 'indiepost';
public static $dbUsername = 'indiepost';
public static $dbPassword = '';
}
|