From e31baef7cab529e1b0be3e76a7f0d35d909470e9 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Sat, 7 Nov 2015 22:15:26 +0100 Subject: [PATCH] Default configuration --- app/bootstrap.php.d/10-config.php | 2 +- app/bootstrap.php.d/60-api.php | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/app/bootstrap.php.d/10-config.php b/app/bootstrap.php.d/10-config.php index 2fa307e..3bf3c5b 100644 --- a/app/bootstrap.php.d/10-config.php +++ b/app/bootstrap.php.d/10-config.php @@ -8,4 +8,4 @@ $app['config.locator'] = function ($app) { return new FileLocator($app['config.locator.path']); }; -$app['env'] = 'dev'; +$app['env'] = 'prod'; diff --git a/app/bootstrap.php.d/60-api.php b/app/bootstrap.php.d/60-api.php index 874cca5..bdde1f9 100644 --- a/app/bootstrap.php.d/60-api.php +++ b/app/bootstrap.php.d/60-api.php @@ -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/']); };