This template is part of Twilio CodeExchange. If you encounter any issues with this code, please open an issue at github.com/twilio-labs/code-exchange/issues.
Learn how to automate your workflow using Twilio's REST API and Twilio SMS. This example app is a vacation rental site, where the host can confirm a reservation via SMS.
Implementations in other languages:
.NET | Java | Node | PHP | Ruby |
---|---|---|---|---|
Done | Done | Done | Done | TBD |
- python 3.6, 3.7 or 3.8 version
This application should give you a ready-made starting point for writing your own application. Before we begin, we need to collect all the config values we need to run the application:
Config Value | Description |
---|---|
TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN | You could find them in your Twilio Account Settings |
TWILIO_NUMBER | You can get one here |
-
Clone this repository and
cd
into it.git clone [email protected]:TwilioDevEd/airtng-flask.git
-
Install the requirements.
make install
-
Copy the sample configuration
.env.example
to.env
, and then edit.env
to match your configuration.cp .env.example .env
See Twilio Account Settings to locate the necessary environment variables.
-
Start the development server. Before running the following command, make sure the virtual environment is activated.
make serve
-
Check it out at http://localhost:5000
-
To let our Twilio phone number use the callback endpoint we exposed, our development server will need to be publicly accessible. You could expose the application to the wider Internet using ngrok. Here, there is an interesting article about why we recommend you to use ngrok.
ngrok http 5000
Keep in mind that our endpoint is:
http://<your-ngrok-subdomain>.ngrok.io/confirm
-
You will need to configure Twilio to send requests to your application when SMS are received. You will need to provision at least one Twilio number with sms capabilities so the application's users can make property reservations. On Twilio Account Settings you could find the link to buy a Twilio number. Once you have a Twilio number you need to configure your number to work with your application. Open the number management page and open a number's configuration by clicking on it. Remember that the number where you change the SMS webhook must be the same one you set on the TWILIO_NUMBER setting.
That's it!
If you have Docker already installed on your machine, you can use our docker-compose.yml
to setup your project.
- Make sure you have the project cloned.
- Setup the
.env
file as outlined in the Local Development steps. - Run
docker-compose up
. - Follow the steps in Local Development on how to expose your port to Twilio using a tool like ngrok and configure the remaining parts of your application.
You can run the tests locally through coverage:
coverage run manage.py test
You can then view the results with coverage report
or build an HTML report with coverage html
.
Additionally to trying out this application locally, you can deploy it to a variety of host services. Here is a small selection of them.
Please be aware that some of these might charge you for the usage or might make the source code for this application visible to the public. When in doubt research the respective hosting service first.
Service | |
---|---|
Heroku |
- The CodeExchange repository can be found here.
This template is open source and welcomes contributions. All contributions are subject to our Code of Conduct.
No warranty expressed or implied. Software is as is.