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

added app.json for Heroku deploy #32

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "Twilio Voice JavaScript SDK Quickstart",
"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",
"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"
}
}
}