I'm trying yo test the new "modules" feature but unfortunately they don't seem to load in my dev environment (osx + python).
I followed this doc https://developers.google.com/appengine/docs/python/modules/routing#Python_Routing_in_the_development_server
Since i couldn't get my modules to load, I found this test app: https://github.com/GoogleCloudPlatform/appengine-modules-helloworld-python but unfortunately I'm experiencing the same problem.
The dispatch.yaml files uses relative routes.
Here are the logs:
- INFO 2013-08-30 00:14:20,702 sdk_update_checker.py:245] Checking for updates to the SDK.
- INFO 2013-08-30 00:14:21,067 sdk_update_checker.py:273] The SDK is up to date.
- INFO 2013-08-30 00:14:21,252 api_server.py:138] Starting API server at: localhost:58478
- INFO 2013-08-30 00:14:21,255 dispatcher.py:164] Starting module "default" running at: localhost:8080
- INFO 2013-08-30 00:14:21,259 admin_server.py:117] Starting admin server at: localhost:8000
- INFO 2013-08-30 00:14:58,871 module.py:593] default: "GET / HTTP/1.1" 200 36
- INFO 2013-08-30 00:15:12,914 module.py:593] default: "GET /mobile/ HTTP/1.1" 404 154
if / works, I get a 404 for /mobile and /work. Based on the doc we should also see the 2 modules mobile-frontend and static-backend started.
Let me know if you have an idea.
Thanks,
Oliv