An example application implementing Click to Call using Twilio. For a step-by-step tutorial, visit this link.
Deploy this example app to Heroku now!
Step-by-step on how to deploy, configure and develop on this example app.
Use Heroku to deploy this app immediately:
- Grab latest source
git clone git://github.com/TwilioDevEd/clicktocall-node.git
- Navigate to folder and create new Heroku Cedar app
heroku create
- Deploy to Heroku
git push heroku master
- Scale your dynos
heroku scale web=1
- Visit the home page of your new Heroku app to see your newly configured app!
heroku open
Are you using a bash shell? Use echo $SHELL to find out. For a bash shell, using the Gmail example, edit the ~/.bashrc or ~/.bashprofile file and add:
export TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxx export TWILIO_AUTH_TOKEN=yyyyyyyyyyyyyyyyy export TWILIO_NUMBER=+15556667777
Are you using Windows or Linux? You can read how to set variables here.
Getting your local environment setup to work with this app is similarly easy. After you configure your app with the steps above, use this guide to get going locally:
- Install the dependencies.
npm install
- Launch local development webserver
node app.js
-
Open browser to http://localhost:3000.
-
Tweak away on
routes/index.js
.
- No warranty expressed or implied. Software is as is. Diggity.
- MIT License
- Lovingly crafted by Twilio Developer Education.