Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use GAE remote api with local (dev) installation

Has anyone find to use the GAE remote api but instead of connecting to AppEngine to connect to localhost? For dev purposes of course

like image 484
PanosJee Avatar asked Feb 28 '23 01:02

PanosJee


1 Answers

i was able to get this working by adding the following to the app.yaml file

builtins:
- remote_api: on

and then from the command line you can access the db, users, urlfetch or memcache modules

remote_api_shell.py -s localhost:8080

This will prompt you for the email and password but this is not important right now. the remote_api_shell.py is on my path from the google app engine directory

like image 140
nate_weldon Avatar answered Mar 05 '23 05:03

nate_weldon