Thanks for the help.
I did find the documentation on serving static content, but I think there's something more basic that I'm missing. If I delete app.yaml from the directory entirely, then I don't see any errors--just the same behavior.
src/myapp/app.yaml
src/myapp/myappscript.go
src/myapp/myapptemplate.html
src/myapp/static/x.png
and I'm doing 'go run .' in the Google Cloud SDK Shell from inside src/myapp/
>dev_appserver.py ./app.yaml
INFO 2019-01-15 20:06:17,151 devappserver2.py:120] Skipping SDK update check.
INFO 2019-01-15 20:06:17,960 api_server.py:274] Starting API server at:
http://localhost:4291
INFO 2019-01-15 20:06:17,960 stub_util.py:357] Applying all pending
transactions and saving the datastore
INFO 2019-01-15 20:06:17,960 stub_util.py:360] Saving search indexes
Traceback (most recent call last):
File "C:\Users\David\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\dev_appserver.py", line 96, in <module>
_run_file(__file__, globals())
File "C:\Users\David\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\dev_appserver.py", line 90, in _run_file
execfile(_PATHS.script_file(script_name), globals_)
File "C:\Users\David\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\devappserver2.py", line 454, in <module>
main()
File "C:\Users\David\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\devappserver2.py", line 442, in main
dev_server.start(options)
File "C:\Users\David\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\devappserver2.py", line 202, in start
options.api_host, apiserver.port, wsgi_request_info_)
File "C:\Users\David\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\dispatcher.py", line 262, in start
ssl_port)
File "C:\Users\David\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\dispatcher.py", line 403, in _create_module
ssl_port=ssl_port)
File "C:\Users\David\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\module.py", line 1299, in __init__
super(AutoScalingModule, self).__init__(**kwargs)
File "C:\Users\David\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\module.py", line 583, in __init__
self._module_configuration)
File "C:\Users\David\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\module.py", line 223, in _create_instance_factory
sorted(repr(k) for k in runtime_factories.FACTORIES))))
RuntimeError: Unknown runtime 'go111'; supported runtimes are 'custom', 'go', 'java', 'java7', 'java8', 'php55', 'php72', 'python', 'python-compat', 'python27'.