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.

15 lines
375 B

  1. <?php
  2. class Config {
  3. public static $hostname = 'indiepost.dev';
  4. public static $gaid = '';
  5. public static $dbHost = '127.0.0.1';
  6. public static $dbName = 'indiepost';
  7. public static $dbUsername = 'indiepost';
  8. public static $dbPassword = '';
  9. public static function instagramRedirectURI() {
  10. return 'http://'.Config::$hostname.'/auth/instagram-callback';
  11. }
  12. }