From 10cad3324828b249125f200ec553dbbb4f925eab Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 14 Mar 2020 20:19:16 +0100 Subject: [PATCH] Added configuration for mercure integration --- config/autoload/mercure.global.php | 13 +++++++++++++ config/autoload/mercure.local.php.dist | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 config/autoload/mercure.global.php create mode 100644 config/autoload/mercure.local.php.dist diff --git a/config/autoload/mercure.global.php b/config/autoload/mercure.global.php new file mode 100644 index 00000000..c70c9f06 --- /dev/null +++ b/config/autoload/mercure.global.php @@ -0,0 +1,13 @@ + [ + 'public_hub_url' => null, + 'internal_hub_url' => null, + 'jwt_secret' => null, + ], + +]; diff --git a/config/autoload/mercure.local.php.dist b/config/autoload/mercure.local.php.dist new file mode 100644 index 00000000..508d0f63 --- /dev/null +++ b/config/autoload/mercure.local.php.dist @@ -0,0 +1,13 @@ + [ + 'public_hub_url' => 'http://localhost:3080', + 'internal_hub_url' => 'http://shlink_mercure', + 'jwt_secret' => 'super_secret_key', + ], + +];