I am trying to run my Flask Application using python 3.5 on EC2 AWS instance.
I have tried the same application on my system and it ran well using the link:
http://127.0.0.1:5000/api/v1.0/people/[email protected]
Similarly, I have launched the Flask app on AWS instance, but after hitting the url in the similar fashion, I could not see the output: http://ec2-xx-xxx-xx-xxx.compute-1.amazonaws.com:5000/api/v1.0/people/
I launched the application as:
python3.5 FlaskRestAPI.py
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
Kindly, let me know what I need to do to see the output?