Skip to content

Commit c48e732

Browse files
author
Slyke
committed
Successfully tested Redis
1 parent 3af82de commit c48e732

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.internal/api/start.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
#!/bin/bash
22

33
echo "API bootstrap script startup"
4+
echo "IOTstack Template Path: "
5+
echo "IOTstack Template Services: $(ls /usr/iotstack_api/templates/services/ | wc -l)"
6+
echo "IOTstack Template Networks: $(ls /usr/iotstack_api/templates/networks/ | wc -l)"
7+
echo "IOTstack Template Scripts: $(ls /usr/iotstack_api/templates/scripts/ | wc -l)"
48

59
if [[ $IOTENV == "development" || "$1" = "development" ]]; then
610
echo "Starting API in development mode"

.internal/templates/services/nodered/buildFiles/addons.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@
7575
"node-red-contrib-tf-function",
7676
"node-red-contrib-tf-model",
7777
"node-red-contrib-post-object-detection",
78-
"node-red-contrib-bert-tokenizer"
78+
"node-red-contrib-bert-tokenizer",
79+
"node-red-contrib-redis"
7980
]
8081
}
8182
}

.internal/templates/services/redis/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const pihole = () => {
4747
retr.getMeta = () => {
4848
return {
4949
serviceName, // Required
50-
displayName: 'Redis (Untested)',
50+
displayName: 'Redis',
5151
serviceTypeTags: ['database', 'cache'],
5252
iconUri: '/logos/redis.png'
5353
};

0 commit comments

Comments
 (0)