File tree Expand file tree Collapse file tree 9 files changed +14
-12
lines changed Expand file tree Collapse file tree 9 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ licenses
66
66
/tests /e2e /results
67
67
/tests /e2e /remote
68
68
/tests /e2e /.redisinsight-v2
69
+ /tests /e2e /.redisinsight-app
69
70
70
71
# Parcel
71
72
.parcel-cache
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ authors to avoid automatic execution of malicious code.
9
9
10
10
1 . Download the plugin for the Workbench.
11
11
2 . Open the ` plugins ` folder with the following path
12
- * For MacOs: ` <usersHomeDir>/.redisinsight-preview /plugins `
13
- * For Windows: ` C:/Users/{Username}/.redisinsight-preview /plugins `
14
- * For Linux: ` <usersHomeDir>/.redisinsight-preview /plugins `
12
+ * For MacOs: ` <usersHomeDir>/.redisinsight-app /plugins `
13
+ * For Windows: ` C:/Users/{Username}/.redisinsight-app /plugins `
14
+ * For Linux: ` <usersHomeDir>/.redisinsight-app /plugins `
15
15
3 . Add the folder with plugin to the ` plugins ` folder
16
16
17
17
To see the uploaded plugin visualizations in the command results, reload the Workbench
Original file line number Diff line number Diff line change 1
1
COMMON_URL = https://localhost:5530
2
2
API_URL = https://localhost:5530/api
3
3
OSS_SENTINEL_PASSWORD = password
4
- APP_FOLDER_NAME = .redisinsight-stage
4
+ APP_FOLDER_NAME = .redisinsight-app- stage
5
5
6
6
OSS_STANDALONE_HOST = localhost
7
7
OSS_STANDALONE_PORT = 8100
Original file line number Diff line number Diff line change 1
1
COMMON_URL = https://app:5000
2
2
API_URL = https://app:5000/api
3
3
OSS_SENTINEL_PASSWORD = password
4
- APP_FOLDER_NAME = .redisinsight
4
+ APP_FOLDER_NAME = .redisinsight-app
5
5
NOTIFICATION_UPDATE_URL = https://s3.amazonaws.com/redisinsight.test/public/tests/e2e/notifications.json
6
6
NOTIFICATION_SYNC_INTERVAL = 30000
7
7
RI_FEATURES_CONFIG_URL = http://static-server:5551/remote/features-config.json
Original file line number Diff line number Diff line change 4
4
remote
5
5
.redisinsight
6
6
.redisinsight-v2
7
+ .redisinsight-app
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ services:
10
10
- ./results:/usr/src/app/results
11
11
- ./report:/usr/src/app/report
12
12
- ./plugins:/usr/src/app/plugins
13
- - .redisinsight:/root/.redisinsight
13
+ - .redisinsight-app :/root/.redisinsight-app
14
14
- .ritmp:/tmp
15
15
- ./test-data/certs:/root/certs
16
16
- ./test-data/ssh:/root/ssh
@@ -44,7 +44,7 @@ services:
44
44
env_file :
45
45
- ./.env
46
46
volumes :
47
- - .redisinsight:/root/.redisinsight
47
+ - .redisinsight-app :/root/.redisinsight-app
48
48
- .ritmp:/tmp
49
49
- ./test-data/certs:/root/certs
50
50
- ./test-data/ssh:/root/ssh
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export const commonUrl = process.env.COMMON_URL || 'https://localhost:5000';
9
9
export const apiUrl = process . env . API_URL || 'https://localhost:5000/api' ;
10
10
11
11
export const workingDirectory = process . env . APP_FOLDER_ABSOLUTE_PATH
12
- || ( joinPath ( os . homedir ( ) , process . env . APP_FOLDER_NAME || '.redisinsight' ) ) ;
12
+ || ( joinPath ( os . homedir ( ) , process . env . APP_FOLDER_NAME || '.redisinsight-app ' ) ) ;
13
13
export const fileDownloadPath = joinPath ( os . homedir ( ) , 'Downloads' ) ;
14
14
const uniqueId = chance . string ( { length : 10 } ) ;
15
15
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ services:
9
9
volumes :
10
10
- ./results:/usr/src/app/results
11
11
- ./plugins:/usr/src/app/plugins
12
- - .redisinsight:/root/.redisinsight
12
+ - .redisinsight-app :/root/.redisinsight-app
13
13
- ./test-data/certs:/root/certs
14
14
- ./test-data/ssh:/root/ssh
15
15
- ./remote:/root/remote
@@ -46,7 +46,7 @@ services:
46
46
context : ./../../
47
47
dockerfile : Dockerfile
48
48
volumes :
49
- - .redisinsight:/root/.redisinsight
49
+ - .redisinsight-app :/root/.redisinsight-app
50
50
- ./test-data/certs:/root/certs
51
51
- ./test-data/ssh:/root/ssh
52
52
ports :
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ curl --request GET -sL \
6
6
7
7
echo " Custom plugins archive was downloaded"
8
8
9
- mkdir -p .redisinsight
10
- unzip -o plugins.zip -d ./.redisinsight/plugins
9
+ mkdir -p .redisinsight-app
10
+ unzip -o plugins.zip -d ./.redisinsight-app /plugins
11
11
12
12
echo " Custom plugins were unarchived"
13
13
You can’t perform that action at this time.
0 commit comments