Skip to content

Commit c815826

Browse files
committed
#RI-4437 - changed folder from .redisinsight to .redisinsight-app
1 parent 14c245f commit c815826

File tree

9 files changed

+14
-12
lines changed

9 files changed

+14
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ licenses
6666
/tests/e2e/results
6767
/tests/e2e/remote
6868
/tests/e2e/.redisinsight-v2
69+
/tests/e2e/.redisinsight-app
6970

7071
# Parcel
7172
.parcel-cache

docs/plugins/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ authors to avoid automatic execution of malicious code.
99

1010
1. Download the plugin for the Workbench.
1111
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`
1515
3. Add the folder with plugin to the `plugins` folder
1616

1717
To see the uploaded plugin visualizations in the command results, reload the Workbench

tests/e2e/.desktop.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
COMMON_URL=https://localhost:5530
22
API_URL=https://localhost:5530/api
33
OSS_SENTINEL_PASSWORD=password
4-
APP_FOLDER_NAME=.redisinsight-stage
4+
APP_FOLDER_NAME=.redisinsight-app-stage
55

66
OSS_STANDALONE_HOST=localhost
77
OSS_STANDALONE_PORT=8100

tests/e2e/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
COMMON_URL=https://app:5000
22
API_URL=https://app:5000/api
33
OSS_SENTINEL_PASSWORD=password
4-
APP_FOLDER_NAME=.redisinsight
4+
APP_FOLDER_NAME=.redisinsight-app
55
NOTIFICATION_UPDATE_URL=https://s3.amazonaws.com/redisinsight.test/public/tests/e2e/notifications.json
66
NOTIFICATION_SYNC_INTERVAL=30000
77
RI_FEATURES_CONFIG_URL=http://static-server:5551/remote/features-config.json

tests/e2e/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ results
44
remote
55
.redisinsight
66
.redisinsight-v2
7+
.redisinsight-app

tests/e2e/docker.web.docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- ./results:/usr/src/app/results
1111
- ./report:/usr/src/app/report
1212
- ./plugins:/usr/src/app/plugins
13-
- .redisinsight:/root/.redisinsight
13+
- .redisinsight-app:/root/.redisinsight-app
1414
- .ritmp:/tmp
1515
- ./test-data/certs:/root/certs
1616
- ./test-data/ssh:/root/ssh
@@ -44,7 +44,7 @@ services:
4444
env_file:
4545
- ./.env
4646
volumes:
47-
- .redisinsight:/root/.redisinsight
47+
- .redisinsight-app:/root/.redisinsight-app
4848
- .ritmp:/tmp
4949
- ./test-data/certs:/root/certs
5050
- ./test-data/ssh:/root/ssh

tests/e2e/helpers/conf.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const commonUrl = process.env.COMMON_URL || 'https://localhost:5000';
99
export const apiUrl = process.env.API_URL || 'https://localhost:5000/api';
1010

1111
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'));
1313
export const fileDownloadPath = joinPath(os.homedir(), 'Downloads');
1414
const uniqueId = chance.string({ length: 10 });
1515

tests/e2e/local.web.docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
volumes:
1010
- ./results:/usr/src/app/results
1111
- ./plugins:/usr/src/app/plugins
12-
- .redisinsight:/root/.redisinsight
12+
- .redisinsight-app:/root/.redisinsight-app
1313
- ./test-data/certs:/root/certs
1414
- ./test-data/ssh:/root/ssh
1515
- ./remote:/root/remote
@@ -46,7 +46,7 @@ services:
4646
context: ./../../
4747
dockerfile: Dockerfile
4848
volumes:
49-
- .redisinsight:/root/.redisinsight
49+
- .redisinsight-app:/root/.redisinsight-app
5050
- ./test-data/certs:/root/certs
5151
- ./test-data/ssh:/root/ssh
5252
ports:

tests/e2e/upload-custom-plugins.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ curl --request GET -sL \
66

77
echo "Custom plugins archive was downloaded"
88

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
1111

1212
echo "Custom plugins were unarchived"
1313

0 commit comments

Comments
 (0)