Use Twilio to create SMS notifications to keep your subscribers in the loop.
-
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. You can buy a number right here. Once you have a 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
TwilioPhoneNumber
setting.To start using
ngrok
in our project you'll have execute to the following line in the command prompt.ngrok http 8080 -host-header="localhost:8080"
Keep in mind that our endpoint is:
http://<your-ngrok-subdomain>.ngrok.io/message
-
Clone this repository and
cd
into it.git clone git@github.com:TwilioDevEd/marketing-notifications-python.git
-
Create a new virtual environment.
-
If using vanilla virtualenv:
virtualenv venv source venv/bin/activate
-
If using virtualenvwrapper:
mkvirtualenv account-verification-flask
-
-
Install the requirements using pip.
pip install -r requirements.txt
-
Edit the following keys/values for the
config.py
file inside themarketing-notifications-python/
directory. Be sure to replace the place holders and connection string with real information.
SECRET_KEY = 'your_authy_secret_key'
TWILIO_ACCOUNT_SID = '[your_twilio_account_sid]' TWILIO_AUTH_TOKEN = '[your_twilio_auth_token]' TWILIO_NUMBER = '[your_twilio_phone_number]'
SQLALCHEMY_DATABASE_URI = 'sqlite://' ```
-
Run the migrations.
python manage.py db upgrade
-
Start the development server.
python manage.py runserver
That's it!
You can run the tests locally through coverage:
-
Run the tests.
$ coverage run test.py
You can then view the results with coverage report
or build an HTML report with coverage html
.
- No warranty expressed or implied. Software is as is. Diggity.
- MIT License
- Lovingly crafted by Twilio Developer Education.