Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

TwilioDevEd/server-notifications-servlets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Server Notifications with Servlets

Java Servlet CI

Use Twilio to send SMS alerts so that you never miss a critical issue.

Read the full tutorial here!

Local Development

  1. First clone this repository and cd into it:

    git clone git@github.com:TwilioDevEd/server-notifications-servlets.git
    cd server-notifications-servlets
    
  2. Export the environment variables:

    You can find the AccountSID and the AuthToken at https://www.twilio.com/user/account/settings.

    export TWILIO_ACCOUNT_SID=your account sid
    export TWILIO_AUTH_TOKEN=your auth token
    

    The Twilio Phone Number can be found at https://www.twilio.com/user/account/phone-numbers/incoming.

    export TWILIO_PHONE_NUMBER=your Twilio phone number
    
  3. Make sure the tests succeed:

    mvn compile test
    
  4. Run the application.

    mvn compile && mvn jetty:run
    
  5. Check it out at http://localhost:8080

That's it!

Meta

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