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 (

Usage

@@ -15,6 +17,22 @@ export default () => { +
Configure the CLI
+
+       

+ 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 }"
+ {'}'}
+
+
+
Run the CLI
         
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

- + diff --git a/media/help-copy-client-id-secret.png b/media/help-copy-client-id-secret.png new file mode 100644 index 0000000..0ecfc7b Binary files /dev/null and b/media/help-copy-client-id-secret.png differ diff --git a/media/help-find-client.png b/media/help-find-client.png new file mode 100644 index 0000000..2925fc5 Binary files /dev/null and b/media/help-find-client.png differ