diff options
| author | Pinapelz <yukais@pinapelz.com> | 2023-11-23 01:22:59 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2023-11-23 01:22:59 -0800 |
| commit | 21f67f2d14a31806282600539161392e1c30980a (patch) | |
| tree | 2cf6febd611406f59e67b2a4471cdeb5cf12399a | |
| parent | 8062f781d93aaf256b0c3ad7a4f7b66ba4b9b8f2 (diff) | |
fix incorrect env requirement app.json
Signed-off-by: Pinapelz <yukais@pinapelz.com>
| -rw-r--r-- | app.json | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -6,7 +6,7 @@ "env": { "DISCORDTOKEN": { "description": "Your Discord bot token", - "generator": "secret" + "value": "secret" }, "YOUTUBEAPIKEY": { "description": "Youtube Data API V3 Key", @@ -14,11 +14,13 @@ }, "spotifyClientID": { "description": "Spotify API Client ID (optional)", - "value": "secret" + "value": "secret", + "required": false }, "spotifyClientSecret": { "description": "Spotify API Client Secret (optional)", - "value": "secret" + "value": "secret", + "required": false } } } |
