summaryrefslogtreecommitdiff
path: root/lib/config.template.php
blob: 0dbe2dcd0a263e7eb2f8739d8a436cf883013c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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 = '';

  public static function instagramRedirectURI() {
    return 'http://'.Config::$hostname.'/auth/instagram-callback';
  }
}