Twilio

Twilio Sample App Template

Actions Status

About

This is a GitHub template for creating other Twilio sample/template apps. It contains a variety of features that should ideally be included in every Twilio sample app. You can use GitHub's repository template functionality to create a copy of this.

Implementations in other languages:

Java Python PHP Ruby Node
TBD TBD TBD TBD Done

How it works

This application is only a barebones C# .NET Core web application built using ASP.NET Core MVC. Whenever, possible we should be using this. However, if you are using .NET Framework that comes with its own standardized application structure, you should try to merge these by using the same README structure and test coverage, configuration etc. as this project.

Features

How to use it

  1. Create a copy using GitHub's repository template functionality
  2. Update the README.md.
  3. Rename the apps to your desired name and take care of the namespaces that would also require to change.
  4. Build your app as necessary while making sure the tests pass.
  5. Publish your app to GitHub

Set up

Requirements

Twilio Account Settings

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
Account Sid Your primary Twilio account identifier - find this in the Console.
Auth Token Used to authenticate - just like the above, you'll find this here.
Phone number A Twilio phone number in E.164 format - you can get one here

Local development

After the above requirements have been met:

  1. Clone this repository and cd into it
git clone git@github.com:twilio-labs/sample-template-dotnet.git
cd sample-template-dotnet
  1. Build to install the dependencies
dotnet build
  1. Set your environment variables
cp TwilioSampleApp/twilio.json.example TwilioSampleApp/twilio.json

See Twilio Account Settings to locate the necessary environment variables.

  1. Run the application
dotnet run --project TwilioSampleApp
  1. Navigate to http://localhost:5000

That's it!

Tests

You can run the tests locally by typing:

dotnet test

Resources

Contributing

This template is open source and welcomes contributions. All contributions are subject to our Code of Conduct.

Visit the project on GitHub

License

MIT

Disclaimer

No warranty expressed or implied. Software is as is.