Skip to content

Commit 78d90b6

Browse files
authored
Merge pull request #40 from SensorsIot/experimental
Experimental Branch
2 parents 576c88f + 0b30604 commit 78d90b6

File tree

9 files changed

+300
-75
lines changed

9 files changed

+300
-75
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
/services/
33
/volumes/
44
/backups/
5+
/.tmp/*
56
docker-compose.yml
6-
.outofdate
7+
.outofdate
8+
9+
!.gitkeep

.templates/nodered/build.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ node_selection=$(whiptail --title "Node-RED nodes" --checklist --separate-output
66
"Use the [SPACEBAR] to select the nodes you want preinstalled" 20 78 12 -- \
77
"node-red-node-pi-gpiod" " " "ON" \
88
"node-red-dashboard" " " "ON" \
9+
"node-red-contrib-influxdb" " " "ON" \
10+
"node-red-contrib-boolean-logic" " " "ON" \
11+
"node-red-node-rbe" " " "ON" \
12+
"node-red-configurable-ping" " " "ON" \
913
"node-red-node-openweathermap" " " "OFF" \
14+
"node-red-contrib-discord" " " "OFF" \
15+
"node-red-node-email" " " "on" \
1016
"node-red-node-google" " " "OFF" \
1117
"node-red-node-emoncms" " " "OFF" \
1218
"node-red-node-geofence" " " "OFF" \
@@ -15,7 +21,6 @@ node_selection=$(whiptail --title "Node-RED nodes" --checklist --separate-output
1521
"node-red-node-smooth" " " "OFF" \
1622
"node-red-node-darksky" " " "OFF" \
1723
"node-red-node-sqlite" " " "OFF" \
18-
"node-red-contrib-influxdb" " " "ON" \
1924
"node-red-contrib-config" " " "OFF" \
2025
"node-red-contrib-grove" " " "OFF" \
2126
"node-red-contrib-diode" " " "OFF" \
@@ -29,7 +34,6 @@ node_selection=$(whiptail --title "Node-RED nodes" --checklist --separate-output
2934
"node-red-contrib-isonline" " " "OFF" \
3035
"node-red-contrib-npm" " " "OFF" \
3136
"node-red-contrib-file-function" " " "OFF" \
32-
"node-red-contrib-boolean-logic" " " "OFF" \
3337
"node-red-contrib-home-assistant-websocket" " " "OFF" \
3438
"node-red-contrib-blynk-ws" " " "OFF" \
3539
"node-red-contrib-owntracks" " " "OFF" \

.templates/python/app/requirements.txt

Whitespace-only changes.

.templates/python/requirements.txt

Whitespace-only changes.

.tmp/.gitkeep

Whitespace-only changes.

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
# IOT Stack
22
IOTstack is a builder for docker-compose to easily make and maintain IoT stacks on the Raspberry Pi.
33

4+
45
## Documentation for the project:
56

67
https://sensorsiot.github.io/IOTstack/
78

9+
810
## Video
911
https://youtu.be/a6mjt8tWUws
1012

13+
1114
## Installation
1215
1. On the (RPi) lite image you will need to install git first
1316

@@ -33,3 +36,22 @@ cd ~/IOTstack && bash ./menu.sh
3336
```
3437
docker-compose up -d
3538
```
39+
40+
## Experimental Features
41+
Want to have the latest and greatest features? Switch to the experimental branch:
42+
```
43+
git pull && git checkout experimental
44+
./menu.sh
45+
```
46+
47+
Do note that the experimental branch may be broken, or may break your setup, so ensure you have a good backup, and please report any issues.
48+
49+
## Migrating from the old repo?
50+
```
51+
cd ~/IOTstack/
52+
git remote set-url origin https://github.com/SensorsIot/IOTstack.git
53+
git pull origin master
54+
docker-compose down
55+
./menu.sh
56+
docker-compose up -d
57+
```

0 commit comments

Comments
 (0)