From 25500d4959d44ccc3bd74d89a4e7ea60ba4173f3 Mon Sep 17 00:00:00 2001 From: Juan Valacco <97040903+jvalacco-dataherald@users.noreply.github.com> Date: Thu, 9 May 2024 18:36:25 -0300 Subject: [PATCH] include auth0 section to enterprise backend --- services/enterprise/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/services/enterprise/README.md b/services/enterprise/README.md index 4d730075..604a6dd4 100644 --- a/services/enterprise/README.md +++ b/services/enterprise/README.md @@ -29,11 +29,23 @@ docker-compose build docker-compose up ``` +## Setting up Authentication with Auth0 +To connect to Auth0 you will need to fill in the following environment variables before running the app: +``` +AUTH0_DOMAIN= +AUTH0_ISSUER= +AUTH0_API_AUDIENCE= +AUTH0_DISABED=False +``` + +Please, read the front-end docs about Auth0 [here](../admin-console/README.md#setting-up-an-auth0-application) if you have troubles setting this up. + ## Setting up Stripe To get the stripe api key for local development, go to stripe's developer dashboard in test mode (https://dashboard.stripe.com/test/developers), then go to the API keys tab and either use the exising key named `test key` or create a new one with the appropriate permissions. To get the stripe webhook secret go to the Webhook tab instead and click `Add local listener`. + >If you would like to disable stripe, make sure to change your organization's plan to `ENTERPRISE`. ## Testing (deprecated)