You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Heroku (free instance is slow and is guaranteed to sleep some time)
Google App Engine (does not provide any free SQL db for Flask, need to use mongo by ML Labs)
Redhat Openshift (not easy to set up)
I recommend GAE with mongo db as the site won't have such analytical requirement of advance SQL queries and can be benefited by speed and simpliity of a NoSQL database like mongo
Also, starting with mongo does not require any prior knowledge of databases as it is as simple collection.put(python_dict)
And pymongo works with native python types without any model generation
The text was updated successfully, but these errors were encountered:
For deployment, we can use:
I recommend GAE with mongo db as the site won't have such analytical requirement of advance SQL queries and can be benefited by speed and simpliity of a NoSQL database like mongo
Also, starting with mongo does not require any prior knowledge of databases as it is as simple
collection.put(python_dict)
And pymongo works with native python types without any model generation
The text was updated successfully, but these errors were encountered: