sabrisay / call-tracking-django

Use Twilio to track the effectiveness of your different marketing campaigns.

Home Page:https://www.twilio.com/docs/tutorials/walkthrough/call-tracking/python/django

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Twilio

Call Tracking (Django)

Build Status Coverage Status

Use Twilio to track the effectiveness of your different marketing campaigns. Learn how call tracking helps organizations in these Twilio customer stories.

Read the full tutorial here!

Quickstart

Create a TwiML App

This project is configured to use a TwiML App, which allows us to easily set the voice URLs for all Twilio phone numbers we purchase in this app.

Create a new TwiML app at https://www.twilio.com/user/account/apps/add and use its Sid as the TWIML_APPLICATION_SID environment variable wherever you run this app.

Creating a TwiML App

You can learn more about TwiML apps here: https://www.twilio.com/help/faq/twilio-client/how-do-i-create-a-twiml-app

Local development

This project is built using the Django web framework. It runs on Python 2.7+ and Python 3.4+.

To run the app locally, first clone this repository and cd into its directory. Then:

  1. Create a new virtual environment:

  2. Install the requirements:

    pip install -r requirements.txt
    
  3. Start a local PostgreSQL database and create a database called call_tracking:

    • If on a Mac, I recommend Postgres.app. After install, open psql and run CREATE DATABASE call_tracking;
    • If Postgres is already installed locally, you can just run createdb call_tracking from a terminal
  4. Run the migrations with:

    python manage.py migrate
    
  5. Optionally create a superuser so you can access the Django admin:

    python manage.py createsuperuser
    
  6. Copy the .env_example file to .env, and edit it to include your Twilio API credentials (found at https://www.twilio.com/user/account/voice)

  7. Run source .env to apply the environment variables (or even better, use autoenv)

  8. Start the development server

    python manage.py runserver
    

To actually forward incoming calls, your development server will need to be publicly accessible. We recommend using ngrok to solve this problem.

Once you have started ngrok, update your TwiML app's voice URL setting to use your ngrok hostname, so it will look something like this:

http://88b37ada.ngrok.io/call-tracking/forward-call

Run the tests

You can run the tests locally through coverage:

$ coverage run manage.py test --settings=twilio_sample_project.settings.test

You can then view the results with coverage report or build an HTML report with coverage html.

Meta

  • No warranty expressed or implied. Software is as is. Diggity.
  • MIT License
  • Lovingly crafted by Twilio Developer Education.

About

Use Twilio to track the effectiveness of your different marketing campaigns.

https://www.twilio.com/docs/tutorials/walkthrough/call-tracking/python/django

License:MIT License


Languages

Language:Python 79.1%Language:HTML 18.4%Language:JavaScript 2.5%