Google App Engine, Python,
dev_appserver.py app.yaml --host $IP --port $PORT --admin_host $IP --admin_port 8081
/ . Cloud 9 8081 8082, . Cloud9, .
$IP $PORT - Cloud 9 0.0.0.0 8080 .
Edit:
gcloud ( 2018 ) IP- , , .
- , --enable_host_checking=false.
dev_appserver.py app.yaml --enable_host_checking=false
There is an unanswered Cloud 9 post in this release ( link to c9 forum ). I assume you can add $ C9_HOSTNAME as the host, but this does not work for me.
Interactive console
If you want to use the interactive console, you need to assign an administrator port and also use the `--enable_console 'flag.
dev_appserver.py app.yaml --enable_host_checking=false --admin_port 8081 --enable_console=true
source
share