Re: [google-appengine] Re: 500 error while trying to post to a flask app from postman

2019-07-19 Thread 'David (Cloud Platform Support)' via Google App Engine
This error is most likely caused by the inability of properly using SQL lite on App Engine standard. However, please take a look at Cloud SQL which is pretty easy to get started with within App Engine. -- You received this message

Re: [google-appengine] Re: 500 error while trying to post to a flask app from postman

2019-07-18 Thread Karan Sharma
Hi thank you for your input i tried what you have suggested already since my last reply .The error thrown is "sqlite3 OperationalError: attempt to write a readonly database" . Which i have been unable to resolve. There were solution which involved running some commands which i did not

Re: [google-appengine] Re: 500 error while trying to post to a flask app from postman

2019-07-18 Thread 'David (Cloud Platform Support)' via Google App Engine
The 500 error you are receiving may be due to an issue with what happens in your post, specifically when you try to write to your database. You can try catching any errors in that method or you could also check more details about the error by using the Stackdriver Logging

Re: [google-appengine] Re: 500 error while trying to post to a flask app from postman

2019-07-17 Thread Karan Sharma
Hi , so sorry i forgot to mention i have made a requirements.txt when i deployed it to the GCP and the landing get api is working which responds with a simple "Flippingo" as i have mentioned in the comments in code . https://flippingo-test.appspot.com/ https://flippingo-test.appspot.com/get_all

[google-appengine] Re: 500 error while trying to post to a flask app from postman

2019-07-17 Thread 'David (Cloud Platform Support)' via Google App Engine
Hello Karan, This 500 error you are receiving could be due to missing libraries (flask) since I do not see a requirements.txt on your github. Please follow our quickstart on how to get started with Python 3.7 which covers