Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed environmental to local variables #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
from twilio.twiml.voice_response import VoiceResponse
from twilio.rest import Client

# Pull in configuration from system environment variables
TWILIO_ACCOUNT_SID = os.environ.get('TWILIO_ACCOUNT_SID')
TWILIO_AUTH_TOKEN = os.environ.get('TWILIO_AUTH_TOKEN')
TWILIO_PHONE_NUMBER = os.environ.get('TWILIO_PHONE_NUMBER')
# Type your environmental variables here.
TWILIO_ACCOUNT_SID = "ACxxx" #Your Account SID goes here
TWILIO_AUTH_TOKEN = "xxxxxxx" #Your Auth Token goes here
TWILIO_PHONE_NUMBER = "+xxxxxx" #Your phone number goes here

# create an authenticated client that can make requests to Twilio for your
# account.
Expand Down