Skip to content

Commit 90cc9a5

Browse files
committed
changed RedisLabs to Redis + link to my own git repo
1 parent 057ac2f commit 90cc9a5

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ $ mvn clean package
2929
3030
$ docker-compose up --build
3131
32+
# and to force only one container rebuild eg Vue.js frontend
33+
$ docker-compose up --build app-frontend
34+
3235
```
3336

3437
Cleanup
7.73 KB
Loading

ui-redis-front-end/redis-front/src/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828

2929
<b-navbar-nav class="ml-auto">
30-
<img src="/imgs/redislabs.png" height="30" />
30+
<img src="/imgs/redis-logo-red-white-rgb.png" height="30" />
3131
</b-navbar-nav>
3232

3333
</b-collapse>
@@ -66,7 +66,7 @@
6666
</b-popover>
6767
</div>
6868

69-
<a href="https://github.com/tgrall/redis-microservices-demo"><img src="/imgs/forkme_left_red.svg" style="position:absolute;top:0;left:0;z-index:2000;" alt="Fork me on GitHub"></a>
69+
<a href="https://github.com/alexvasseur/redis-microservices-demo"><img src="/imgs/forkme_left_red.svg" style="position:absolute;top:0;left:0;z-index:2000;" alt="Fork me on GitHub"></a>
7070

7171
</div>
7272
</template>

ui-redis-front-end/redis-front/src/views/ActorForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default {
7171
this.fetch();
7272
this.$parent.contextualHelp = "Legacy Application calling a REST API providing SQL data, "+
7373
"When an actor is updated, and the Streams service is running the database event will be pushed to Redis Streams, and then can be consumed by any type of application.<br/> "+
74-
"See <b><a target='_blank' href='https://github.com/tgrall/redis-microservices-demo/blob/master/sql-data-generator/src/main/java/io/redis/demos/debezium/sql/controllers/ActorsAPIController.java'>ActorsAPIController</a></b>";
74+
"See <b><a target='_blank' href='https://github.com/alexvasseur/redis-microservices-demo/blob/master/sql-data-generator/src/main/java/io/redis/demos/debezium/sql/controllers/ActorsAPIController.java'>ActorsAPIController</a></b>";
7575
},
7676
methods: {
7777
async fetch () {

ui-redis-front-end/redis-front/src/views/Actors.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default {
1717
},
1818
created() {
1919
this.$parent.contextualHelp = "Legacy Application calling a REST API providing SQL data, see "+
20-
"<b><a target='_blank' href='https://github.com/tgrall/redis-microservices-demo/blob/master/sql-data-generator/src/main/java/io/redis/demos/debezium/sql/controllers/ActorsAPIController.java'>ActorsAPIController</a></b>";
20+
"<b><a target='_blank' href='https://github.com/alexvasseur/redis-microservices-demo/blob/master/sql-data-generator/src/main/java/io/redis/demos/debezium/sql/controllers/ActorsAPIController.java'>ActorsAPIController</a></b>";
2121
}
2222
};
2323
</script>

ui-redis-front-end/redis-front/src/views/Autocomplete.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ export default {
116116
this.$parent.contextualHelp =
117117
"This part of the application shows RediSearch Suggest feature. Actors & Movies data are pushed in real time from th RDBMS to Redis using Streams." +
118118
"Then a consumer is reading the data and push the data into "+
119-
"<b><a target='blank' href='https://github.com/tgrall/redis-microservices-demo/blob/master/streams-to-redisearch-service/src/main/java/io/redis/demos/services/search/service/StreamsToRediSearch.java'> Redis key</a></b>.<br/>" +
120-
"The data are then accessed using a generic <b><a target='blank' href='https://github.com/tgrall/redis-microservices-demo/blob/master/streams-to-redisearch-service/src/main/java/io/redis/demos/services/search/service/RestStatusController.java'>REST API</a></b>.<br/><br/>" +
119+
"<b><a target='blank' href='https://github.com/alexvasseur/redis-microservices-demo/blob/master/streams-to-redisearch-service/src/main/java/io/redis/demos/services/search/service/StreamsToRediSearch.java'> Redis key</a></b>.<br/>" +
120+
"The data are then accessed using a generic <b><a target='blank' href='https://github.com/alexvasseur/redis-microservices-demo/blob/master/streams-to-redisearch-service/src/main/java/io/redis/demos/services/search/service/RestStatusController.java'>REST API</a></b>.<br/><br/>" +
121121
"You can easily reuse the classes to add new Autocomplete feature to your application. (returning an id in the payload)"
122122
;
123123
},

ui-redis-front-end/redis-front/src/views/MovieForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export default {
167167
this.fetch();
168168
this.$parent.contextualHelp = "Legacy Application calling a REST API providing SQL data, "+
169169
"When a movie is updated, and the Streams service is running the database event will be pushed to Redis Streams, and then can be consumed by any type of application.<br/> "+
170-
"See <b><a target='_blank' href='https://github.com/tgrall/redis-microservices-demo/blob/master/sql-data-generator/src/main/java/io/redis/demos/debezium/sql/controllers/MoviesAPIController.java'>MoviesAPIController</a></b>";
170+
"See <b><a target='_blank' href='https://github.com/alexvasseur/redis-microservices-demo/blob/master/sql-data-generator/src/main/java/io/redis/demos/debezium/sql/controllers/MoviesAPIController.java'>MoviesAPIController</a></b>";
171171
},
172172
methods: {
173173
async fetch () {

0 commit comments

Comments
 (0)