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/']); };