An example application implementing Click to Call using Twilio.
Step-by-step on how to deploy, configure and develop on this example app.
Use Heroku to deploy this app immediately:
- Grab the latest source
git clone git://github.com/TwilioDevEd/clicktocall-rails.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 edit the ~/.bashrc or ~/.bashprofile file and add:
export TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxx
export TWILIO_AUTH_TOKEN=yyyyyyyyyyyyyyyyy
export TWILIO_NUMBER=+15556667777
export API_HOST=https://example.herokuapp.com
Are you using Windows or Linux? You can read more on how to set variables here.
Getting your local environment setup to work with this app is easy.
After you configure your app with the steps above use this guide to
get going locally:
- Install the dependencies
bundle install
- Launch local development webserver
rails server
-
Open browser to http://localhost:3000
-
Tweak away on
app/controllers/twilio_controller.rb
- No warranty expressed or implied. Software is as is. Diggity.
- MIT License
- Lovingly crafted by Twilio Developer Education.