Skip to content

Commit 8f3a5de

Browse files
Merge pull request #70 from RedisInsight/main
A new release candidate
2 parents b131809 + 669f417 commit 8f3a5de

File tree

111 files changed

+722
-228
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+722
-228
lines changed

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1+
[![Release](https://img.shields.io/github/v/release/RedisInsight/RedisInsight.svg?sort=semver)](https://github.com/RedisInsight/RedisInsight/releases)
2+
[![CircleCI](https://circleci.com/gh/RedisInsight/RedisInsight/tree/master.svg?style=svg)](https://circleci.com/gh/RedisInsight/RedisInsighth/tree/master)
3+
[![Total alerts](https://img.shields.io/lgtm/alerts/g/RedisInsight/RedisInsight.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/RedisInsight/RedisInsight/alerts/)
4+
5+
# <img src="https://redis.com/wp-content/uploads/2019/11/ico-redisinsight.svg" alt="logo" width="25"/> RedisInsight - Developer GUI for Redis, by Redis.
16
[![Forum](https://img.shields.io/badge/Forum-RedisInsight-red)](https://forum.redis.com/c/redisinsight/65)
27
[![Discord](https://img.shields.io/discord/697882427875393627?style=flat-square)](https://discord.gg/QUkjSsk)
38

4-
# <img src="https://redis.com/wp-content/uploads/2019/11/ico-redisinsight.svg" alt="logo" width="25"/> RedisInsight
59

6-
**Best in class Redis developer GUI to view and interact with your data! [Download it from here](https://redis.com/redis-enterprise/redis-insight/#insight-form)!**
10+
RedisInsight is a visual tool that provides capabilities to design, develop and optimize your Redis application.
11+
Query, analyse and interact with your Redis data. [Download it here](https://redis.com/redis-enterprise/redis-insight/#insight-form)!
712

813
![RedisInsight Browser screenshot](/.github/redisinsight_browser.png)
914

@@ -20,7 +25,7 @@ RedisInsight is an intuitive and efficient GUI for Redis, allowing you to intera
2025
* CRUD support for [RedisJSON](https://oss.redis.com/redisjson/)
2126
* Introducing Workbench - advanced command line interface with intelligent command auto-complete and complex data visualizations
2227
* Command auto-complete support for [RediSearch](https://oss.redis.com/redisearch/), [RedisJSON](https://oss.redis.com/redisjson/), [RedisGraph](https://oss.redis.com/redisgraph/), [RedisTimeSeries](https://oss.redis.com/redistimeseries/), [RedisAI](https://oss.redis.com/redisai/)
23-
* Visualizations of your [RediSearch](https://oss.redis.com/redisearch/) index queries and aggregations
28+
* Visualizations of your [RediSearch](https://oss.redis.com/redisearch/) index, queries, and aggregations
2429
* Ability to build your own data visualization plugins
2530
* Built-in click-through guides for Redis capabilities
2631
* Oficially supported for Redis OSS, [Redis Cloud](https://redis.com/try-free/). Works with Microsoft Azure Cache for Redis (official support upcoming).
@@ -30,7 +35,7 @@ Check out the [release notes](https://docs.redis.com/latest/ri/release-notes/).
3035

3136
## Get started with RedisInsight
3237

33-
This repository includes the code for the newly released in public preview RedisInsight 2.0. Check out the [blogpost](https://redis.com/blog/introducing-redisinsight-2/) announcing it.
38+
This repository includes the code for RedisInsight 2.0, Currently available in public preview. Check out the [blogpost](https://redis.com/blog/introducing-redisinsight-2/) announcing it.
3439

3540
The current GA version of RedisInsight is 1.11. You can install RedisInsight 2.0 along with the GA version.
3641

configs/webpack.config.web.prod.babel.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,20 @@ export default merge(commonConfig, {
122122
test: /\.css$/,
123123
use: ['style-loader', 'css-loader'],
124124
},
125+
// WOFF2 Font
126+
{
127+
test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/,
128+
use: [
129+
{
130+
loader: 'file-loader',
131+
options: {
132+
name: '[hash]-[name].[ext]',
133+
outputPath: 'static',
134+
publicPath: 'static',
135+
},
136+
},
137+
],
138+
},
125139
// TTF Font
126140
{
127141
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,

redisinsight/api/config/default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default {
8080
redijsonUrl: process.env.COMMANDS_REDIJSON_URL
8181
|| 'https://raw.githubusercontent.com/RedisJSON/RedisJSON/master/commands.json',
8282
redistimeseriesUrl: process.env.COMMANDS_REDISTIMESERIES_URL
83-
|| 'https://raw.githubusercontent.com/RedisTimeSeries/RedisTimeSeries/master/src/commands.json',
83+
|| 'https://raw.githubusercontent.com/RedisTimeSeries/RedisTimeSeries/master/commands.json',
8484
redisaiUrl: process.env.COMMANDS_REDISAI_URL
8585
|| 'https://raw.githubusercontent.com/RedisAI/RedisAI/master/commands.json',
8686
redisgraphUrl: process.env.COMMANDS_REDISGRAPH_URL

redisinsight/api/src/constants/agreements-spec.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"disabled": false,
5050
"since": "1.0.4",
5151
"title": "Server Side Public License",
52-
"label": "I have read and understood the <a target=\"_blank\" href=\"https://github.com/RedisInsight/RedisInsight/blob/master/LICENSE\">Server Side Public License</a>",
52+
"label": "I have read and understood the <a target=\"_blank\" href=\"https://github.com/RedisInsight/RedisInsight/blob/main/LICENSE\">Server Side Public License</a>",
5353
"requiredText": "Accept the Server Side Public License"
5454
}
5555
}
-132 KB
Binary file not shown.
32.8 KB
Binary file not shown.
-136 KB
Binary file not shown.
34.6 KB
Binary file not shown.
-134 KB
Binary file not shown.
34.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)