From 8c0b175c1a6a877530715a473df304fb4c07ad46 Mon Sep 17 00:00:00 2001 From: Artem Demchenkov Date: Mon, 7 Oct 2024 15:48:01 +0200 Subject: [PATCH] Update .env files --- .env.common | 4 ++++ backend/integrations/.env | 12 ++++++++++++ 2 files changed, 16 insertions(+) diff --git a/.env.common b/.env.common index b5e4506..1c01d00 100644 --- a/.env.common +++ b/.env.common @@ -7,7 +7,11 @@ YLEM_REDIS_HOST=ylem_session_storage YLEM_REDIS_PORT=6379 YLEM_REDIS_PASSWORD=dtmnpassword +# Ylem requires your own Apache Kafka to be installed to be able to process pipelines and tasks. +# Add the URL of your Apache Kafka instance here or keep it as host.docker.internal:9092 if you have a standard +# Kafka set up on your host machine. YLEM_KAFKA_BOOTSTRAP_SERVERS=host.docker.internal:9092 + YLEM_KAFKA_TASK_RUNS_LOAD_BALANCED_TOPIC=task_runs_load_balanced YLEM_KAFKA_TASK_RUNS_TOPIC=task_runs YLEM_KAFKA_TASK_RUN_RESULTS_TOPIC=task_run_results diff --git a/backend/integrations/.env b/backend/integrations/.env index d96c4ae..de7dbee 100644 --- a/backend/integrations/.env +++ b/backend/integrations/.env @@ -5,20 +5,32 @@ INTEGRATIONS_RETRIEVE_ORGANIZATION_DATA_KEY_URL=http://ylem_users:7333/private/o INTEGRATIONS_EMAIL_CONFIRMATION_LINK=http://ylem_integrations:7337/email/confirm INTEGRATIONS_EMAIL_AFTER_CONFIRMATION_REDIRECT_URL=https://google.com/ +# To enable Slack integration, create its API secret key and client ID +# And place it here +# More information: https://docs.ylem.co/integrations/library-of-integrations/slack#configuring-integration-for-open-source-and-on-premise-versions INTEGRATIONS_SLACK_CLIENT_ID= INTEGRATIONS_SLACK_CLIENT_SECRET= INTEGRATIONS_SLACK_AFTER_AUTHORIZATION_REDIRECT_URL=http://127.0.0.1:7330/slack-authorizations/{uuid}/?justConnected +# To enable Atlassian Jira integration, create its API secret key and client ID +# And place it here +# More information: https://docs.ylem.co/integrations/library-of-integrations/atlassian-jira#configuring-integration-for-open-source-and-on-premise-versions INTEGRATIONS_JIRA_OAUTH_CLIENT_ID= INTEGRATIONS_JIRA_OAUTH_CLIENT_SECRET= INTEGRATIONS_JIRA_AFTER_AUTHORIZATION_REDIRECT_URL=http://127.0.0.1:7330/jira-authorizations/{uuid}/?justConnected INTEGRATIONS_JIRA_OAUTH_REDIRECT_URI=https://ylem_integrations:7337/jira/authorize +# To enable Hubspot integration, create its API secret key and client ID +# And place it here +# More information: https://docs.ylem.co/integrations/library-of-integrations/hubspot#configuring-integration-for-open-source-and-on-premise-versions INTEGRATIONS_HUBSPOT_OAUTH_CLIENT_ID= INTEGRATIONS_HUBSPOT_OAUTH_CLIENT_SECRET= INTEGRATIONS_HUBSPOT_AFTER_AUTHORIZATION_REDIRECT_URL=http://127.0.0.1:7330/hubspot-authorizations/{uuid}/?justConnected INTEGRATIONS_HUBSPOT_OAUTH_REDIRECT_URI=https://ylem_integrations:7337/hubspot/authorize +# To enable Salesforce integration, create its API secret key and client ID +# And place it here +# More information: https://docs.ylem.co/integrations/library-of-integrations/salesforce#configuring-integration-for-open-source-and-on-premise-versions-using-oauth-2.0 INTEGRATIONS_SALESFORCE_OAUTH_CLIENT_ID= INTEGRATIONS_SALESFORCE_OAUTH_CLIENT_SECRET= INTEGRATIONS_SALESFORCE_AFTER_AUTHORIZATION_REDIRECT_URL=http://127.0.0.1:7330/salesforce-authorizations/{uuid}/?justConnected