Default configuration

This commit is contained in:
Simon Vieille 2015-11-07 22:15:26 +01:00
parent e722bd399f
commit e31baef7ca
2 changed files with 2 additions and 3 deletions

View File

@ -8,4 +8,4 @@ $app['config.locator'] = function ($app) {
return new FileLocator($app['config.locator.path']);
};
$app['env'] = 'dev';
$app['env'] = 'prod';

View File

@ -3,6 +3,5 @@
use Gist\Api\Client;
$app['api_client'] = function ($app) {
// return new Client(['base_uri' => 'https://gist.deblan.org/']);
return new Client(['base_uri' => 'http://localhost:8080/']);
return new Client(['base_uri' => 'https://gist.deblan.org/']);
};