Snowman
Snowman

Reputation: 32071

Running Google App Engine test server on iPhone

I'm currently running Google App Engine server on my localhost:8080, and everything works fine. However, now I need my iPhone to be able to make requests too. I can't just access localhost on my iPhone, so I set up web sharing on my Mac, and my computer web address is 192.168.1.106/~mohabitar. However, accessing this address from my computer or from my iPhone only lists a directory of files, it doesn't actually run my Python scripts.

How can I configure Google App Engine test server to run through my mac Web Sharing address?

Upvotes: 0

Views: 267

Answers (1)

Peter Knego
Peter Knego

Reputation: 80340

You need to supply the --address=0.0.0.0 command line parameter when starting dev server (also for the python version).

Upvotes: 4

Related Questions