This repository has been archived by the owner on Jan 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving to a different base image to support armv7 (Raspberry Pi).
- Loading branch information
Showing
5 changed files
with
18 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 5.5 | ||
Moving to a different base image to support armv7 (Raspberry Pi). | ||
|
||
## 5.4: | ||
This update changes the location of the audio responses which are showed in the webinterface. This fix the issue that they get lost after en restart or update. | ||
|
||
It is not required to do the setup again to keep using this addon, but to get the audio responses in the webinterface working you have to reinstall and reconfigure. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
DIR="/data/audio-responses" | ||
if [ ! -d "$DIR" ]; then | ||
cd /assistant_relay | ||
|
||
ARDIR="/data/audio-responses" | ||
if [ ! -d "$ARDIR" ]; then | ||
echo Creating an audio-responses folder... This needs to be done once. | ||
mkdir /data/audio-responses | ||
fi | ||
cd /assistant_relay | ||
|
||
echo Assistant Relay is now starting... | ||
|
||
npm run start |