Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit 50d8758

Browse files
committed
added environment config variables to add.json
1 parent edb95d7 commit 50d8758

File tree

1 file changed

+29
-2
lines changed

1 file changed

+29
-2
lines changed

app.json

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,32 @@
33
"description": "Quick Start application for Twilio Voice JavaScript SDK on Node.js",
44
"repository": "https://github.com/TwilioDevEd/voice-javascript-sdk-quickstart-node",
55
"keywords": ["node", "express", "heroku", "twilio", "voice-sdk"],
6-
"image": "heroku/nodejs"
7-
}
6+
"image": "heroku/nodejs",
7+
"env": {
8+
"TWILIO_ACCOUNT_SID": {
9+
"description": "Your primary Twilio account identifier",
10+
"required": true,
11+
"value": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
12+
},
13+
"TWILIO_API_KEY": {
14+
"description": "Your API Key SID",
15+
"required": true,
16+
"value": "SKXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
17+
},
18+
"TWILIO_API_SECRET": {
19+
"description": "The secret associated with the API Key",
20+
"required": true,
21+
"value": "XXXXXXXXXXXXXXXXX"
22+
},
23+
"TWILIO_CALLER_ID": {
24+
"description": "Your Twilio phone number in E.164 format",
25+
"required": true,
26+
"value": "+1XXXYYYZZZZ"
27+
},
28+
"TWILIO_TWIML_APP_SID": {
29+
"description": "The SID of your TwiML App",
30+
"required": true,
31+
"value": "APXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
32+
}
33+
}
34+
}

0 commit comments

Comments
 (0)