Re: Running flask on AWS SAM

2017-10-14 Thread Frustrated learner
export SERVER_NAME="0.0.0.0:3000 sam local start-api" just exports everything and does not execute. I tried export SERVER_NAME="0.0.0.0:3000" sam local start-api comes back with the same error. Shekar -- https://mail.python.org/mailman/listinfo/python-list

Re: Running flask on AWS SAM

2017-10-13 Thread sohcahtoa82
On Thursday, October 12, 2017 at 9:20:11 PM UTC-7, Frustrated learner wrote: > Hello, > > I have a flask based application which i am able to run locally. > > $ python swagger_server/app.py > * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit) > > I am trying to port this over to aws. I h

Re: Running flask on AWS SAM

2017-10-13 Thread Frustrated learner
Any takers? -- https://mail.python.org/mailman/listinfo/python-list

Running flask on AWS SAM

2017-10-12 Thread Frustrated learner
Hello, I have a flask based application which i am able to run locally. $ python swagger_server/app.py * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit) I am trying to port this over to aws. I have all the dependencies and code organized in the same folder. Here is the transaction and