I maintain older app using Python, webapp2 and ndb. When running the app locally from PyCharm, dev_appserver uses local version of datastore but I'd like to use cloud datastore. Is this possible? In the end, when I run the app locally, it should access datastore of deployed app instead of local one.
This tutorial shows the solution but it is using datastore
from google.cloud
while my app uses ndb
from google.appengine.ext
.