From f91f238ab0ad3c1d75f6cf1f66f44c35b5516d0d Mon Sep 17 00:00:00 2001 From: Quentin Sommer Date: Wed, 17 Oct 2018 19:31:46 +0200 Subject: [PATCH 1/2] feat: Added default values for appId and apiKey --- src/cli/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cli/index.js b/src/cli/index.js index 6c4f0a5c7..92f7338cf 100755 --- a/src/cli/index.js +++ b/src/cli/index.js @@ -169,11 +169,13 @@ const questions = [ type: 'input', name: 'appId', message: 'Application ID', + default: 'latency', }, { type: 'input', name: 'apiKey', message: 'Search API key', + default: '6be0576ff61c053d5f9a3225e2a90f76', }, { type: 'input', From 34f2bb3eeed5e40c353d28cfeaa47ea3f0b4fbf5 Mon Sep 17 00:00:00 2001 From: Haroen Viaene Date: Thu, 18 Oct 2018 18:40:52 +0200 Subject: [PATCH 2/2] feat: default for index name --- src/cli/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/index.js b/src/cli/index.js index 92f7338cf..43bed7897 100755 --- a/src/cli/index.js +++ b/src/cli/index.js @@ -181,6 +181,7 @@ const questions = [ type: 'input', name: 'indexName', message: 'Index name', + default: 'instant_search', }, { type: 'checkbox',