remove config file

This commit is contained in:
Aaron Parecki 2014-05-24 14:56:39 -07:00
parent e357730b31
commit dd3501838d
3 changed files with 2 additions and 19 deletions

2
.gitignore vendored
View file

@ -1,2 +1,4 @@
vendor/ vendor/
.DS_Store .DS_Store
lib/config.php

View file

@ -1,15 +0,0 @@
<?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';
}
}

View file

@ -7,9 +7,5 @@ class Config {
public static $dbName = 'indiepost'; public static $dbName = 'indiepost';
public static $dbUsername = 'indiepost'; public static $dbUsername = 'indiepost';
public static $dbPassword = ''; public static $dbPassword = '';
public static function instagramRedirectURI() {
return 'http://'.Config::$hostname.'/auth/instagram-callback';
}
} }