From 21f67f2d14a31806282600539161392e1c30980a Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Thu, 23 Nov 2023 01:22:59 -0800 Subject: fix incorrect env requirement app.json Signed-off-by: Pinapelz --- app.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app.json b/app.json index d485f59..1b4813f 100644 --- a/app.json +++ b/app.json @@ -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 } } } -- cgit v1.2.3