I have (a possibly easy) question about running braintree on a python heroku server as detailed here https://developers.braintreepayments.com/start/hello-server/python
Now, I am new to heroku and have tried and done a lot of tutorials, which all seem to create an application that is accessible by web server (as for example with python's flask).
Clearly, I cannot test my braintree app through web server. Is there any other way to correspond with my braintree serves once it's live to see if it is doing the right thing? From the console for example?
I am just wondering if there is a way other than through iOS to interact with my braintree server and test in- and output behaviour.
Also, currently I use a procfile of
web: gunicorn main_app:app
and
flask==0.10.1
dj-database-url==0.4.1
Django==1.9.7
gunicorn==19.6.0
psycopg2==2.6.1
whitenoise==2.0.6
braintree==3.32.0
in my requirements.txt, in both cases unsure if this is right.