I created the app.yaml and index.py files in a folder.
app.yaml
application: firstpython
version: 1
runtime: python
api_version: 1
handlers:
- url: /.*
script: index.py
index.py
print 'Content-Type: text/plain'
print ''
print 'Hello, World'
When I run the dev_appserver.py folder
command, I see the page from my own computer by typing localhost:8080. But computers on the same network another can not reach this page by typing my ip, eg 192.168.1.35:8080.
How can I do that?