Possible to test website with GAE over LAN in Mountain Lion?

前端 未结 2 400
盖世英雄少女心
盖世英雄少女心 2021-01-21 00:08

I\'m hosting my website using Google App Engine. It\'s a pretty simple website, but I\'ve got some javascript drawing to a canvas element, which I\'m trying to test on my iPhone

相关标签:
2条回答
  • 2021-01-21 00:45

    As of March 2013 - the "address" argument has been renamed to "host" - (at least for Python version of the app engine)

    • --address=0.0.0.0 argument not working after upgrading to App Engine 1.7.6
    0 讨论(0)
  • 2021-01-21 00:57

    This isn't anything specific to your OS. By default, the App Engine dev server binds to the loopback interface, making it accessible only to your machine. If you want to access it from other machines, you need to pass the --address=0.0.0.0 flag to the dev server - which you can do in the launcher's preference pane.

    0 讨论(0)
提交回复
热议问题