From 9e5ddec207476ca9b1d17df33bbbf65935416828 Mon Sep 17 00:00:00 2001 From: Jakob Stadlhuber Date: Tue, 4 Jun 2024 19:56:35 +0200 Subject: [PATCH] Remove default webhook URL from .env.example The default value for the SELF_HOSTED_WEBHOOK_URL in the .env.example file was removed to prevent unintentional exposure or usage. The users are now required to explicitly specify --- apps/api/.env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/.env.example b/apps/api/.env.example index ea0daa3..eed6bd8 100644 --- a/apps/api/.env.example +++ b/apps/api/.env.example @@ -52,4 +52,4 @@ PROXY_PASSWORD= BLOCK_MEDIA= # Set this to the URL of your webhook when using the self-hosted version of FireCrawl -SELF_HOSTED_WEBHOOK_URL=https://webhook.site/9d867d67-f77a-409b-aad6-73ebb2a264c2 \ No newline at end of file +SELF_HOSTED_WEBHOOK_URL= \ No newline at end of file