Skip to content

Commit

Permalink
added environment config variables to add.json
Browse files Browse the repository at this point in the history
  • Loading branch information
sandragolden committed Sep 20, 2021
1 parent edb95d7 commit 50d8758
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,32 @@
"description": "Quick Start application for Twilio Voice JavaScript SDK on Node.js",
"repository": "https://github.com/TwilioDevEd/voice-javascript-sdk-quickstart-node",
"keywords": ["node", "express", "heroku", "twilio", "voice-sdk"],
"image": "heroku/nodejs"
}
"image": "heroku/nodejs",
"env": {
"TWILIO_ACCOUNT_SID": {
"description": "Your primary Twilio account identifier",
"required": true,
"value": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
},
"TWILIO_API_KEY": {
"description": "Your API Key SID",
"required": true,
"value": "SKXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
},
"TWILIO_API_SECRET": {
"description": "The secret associated with the API Key",
"required": true,
"value": "XXXXXXXXXXXXXXXXX"
},
"TWILIO_CALLER_ID": {
"description": "Your Twilio phone number in E.164 format",
"required": true,
"value": "+1XXXYYYZZZZ"
},
"TWILIO_TWIML_APP_SID": {
"description": "The SID of your TwiML App",
"required": true,
"value": "APXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}
}
}

0 comments on commit 50d8758

Please sign in to comment.