diff --git a/client/components/Help.jsx b/client/components/Help.jsx index fd5b2c1..342d18f 100644 --- a/client/components/Help.jsx +++ b/client/components/Help.jsx @@ -1,6 +1,8 @@ import React from 'react'; -export default () => { +export default ({ tenant }) => { + const clientId = '< auth0-deploy-cli-extension client ID >'; + const secret = '< auth0-deploy-cli-extension client secret >'; return (
+++ First find the client created by this extension, it is named auth0-deploy-cli-extension:
+
+ Next copy the client ID and secret: ++ Create a config.json file with the following information:
+
+ {'{'}
+ "AUTH0_DOMAIN": "{ tenant }"
+ "AUTH0_CLIENT_ID": "{ clientId }"
+ "AUTH0_CLIENT_SECRET": "{ secret }"
+ {'}'}
+
diff --git a/client/containers/App.jsx b/client/containers/App.jsx
index 2f1039c..9a16388 100644
--- a/client/containers/App.jsx
+++ b/client/containers/App.jsx
@@ -47,7 +47,7 @@ export default RequireAuthentication(connectContainer(class App extends Componen
Deploy CLI