diff --git a/.travis.yml b/.travis.yml index f604d24..9f8aec7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,5 +11,5 @@ deploy: on: repo: YangVincent/yelp-and-chill branch: vincent - run: "web: gunicorn run:app --log-file -" + run: "web: gunicorn yelp-and-chill:app --log-file -" diff --git a/Procfile b/Procfile index a1d71f3..015c6fb 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: gunicorn run:app --log-file - +web: gunicorn yelp_and_chill:app --log-file - diff --git a/README.md b/README.md index 0a25147..bf725d2 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,6 @@ As such, there are two main features to this program: 2. Randomly choose an option to combat group indecision when choosing a place to go ####Usage Instructions -During development, only verified numbers can receive messages. These can be checked and modified [here](https://www.twilio.com/user/account/phone-numbers/verified). -Further information can be found [here](https://www.twilio.com/user/account/log/notifications). - Currently, verified numbers can message `+16503977854` via. SMS. If the message is from a registered number, the response will greet by name. Text `usage` to `+16503977854` to see how to use the application. diff --git a/requirements.txt b/requirements.txt index 203a317..341093c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,3 +5,4 @@ gunicorn==19.6.0 Flask==0.11.1 twilio==5.4.0 yelp==1.0.2 +nose==1.3.7 diff --git a/test_app.py b/test_app.py index 7df33f9..7201af0 100644 --- a/test_app.py +++ b/test_app.py @@ -1,5 +1,5 @@ import unittest -from app import app +from yelp_and_chill import app class TestYelpAndChill(unittest.TestCase): def test_yelp_and_chill(self): diff --git a/app.py b/yelp_and_chill.py similarity index 100% rename from app.py rename to yelp_and_chill.py