Skip to content

Commit ab091f7

Browse files
committed
update .env.sample
1 parent 1126cf6 commit ab091f7

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.env.sample

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
EVENTS_API_CLIENT_SECRET=XXX
2-
DISCORD_BOT_TOKEN=XXX
3-
DISCORD_GUILD_ID=XXX
1+
AadValidClientId="39c28870-94e4-47ee-b4fb-affe0bf96c9f"
2+
AadClientSecret=""
3+
RunEnvironment="dev"
4+
JwtSigningKey="YOUR_RANDOM_STRING HERE"

get_msft_jwt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import request from 'request';
22

3-
const client_secret = process.env.EVENTS_API_CLIENT_SECRET;
3+
const client_secret = process.env.AadClientSecret;
44
if (!client_secret) {
55
console.error("Did not find client secret in environment.");
66
process.exit(1);

0 commit comments

Comments
 (0)