Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Commit

Permalink
Fix spelling of ENCRYPTION_KEY
Browse files Browse the repository at this point in the history
Change-type: minor

Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
  • Loading branch information
ajlennon committed Aug 30, 2023
1 parent 4042982 commit 94ffa36
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Or, you can create an application in your balenaCloud dashboard and balena push
| PORT | `80` | the port that exposes the Node-RED UI |
| USERNAME | `balena` | the Node-RED admin username |
| PASSWORD | `balena` | the Node-RED admin password |
| ENCRIPTION_KEY | `balena` | the encription key used to store your credentials files |
| ENCRYPTION_KEY | `balena` | the encryption key used to store your credentials files |

You **must** set the `USERNAME` and `PASSWORD` environment variables to be able to save or run programs in Node-RED.
You **must** set the `USERNAME` and `PASSWORD` environment variables to be able to save or run programs in Node-RED.
More information about using and setting environment variables can be found in
the [balena docs](https://balena.io/docs/learn/manage/serv-vars/).

Expand Down
2 changes: 1 addition & 1 deletion balena.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ data:
- PORT: 80
- USERNAME: balena
- PASSWORD: balena
- ENCRIPTION_KEY: balena
- ENCRYPTION_KEY: balena
defaultDeviceType: raspberry4-64
supportedDeviceTypes:
- raspberry-pi
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
environment:
- "USERNAME=balena"
- "PASSWORD=balena"
- "ENCRIPTION_KEY=balena"
- "ENCRYPTION_KEY=balena"
cap_add:
- SYS_RAWIO
devices:
Expand Down

0 comments on commit 94ffa36

Please sign in to comment.