INFO 2015-10-16 05:06:55,056 devappserver2.py:763] Skipping SDK update check.
INFO 2015-10-16 05:06:55,098 api_server.py:205] Starting API server at: http://localhost:63426
INFO 2015-10-16 05:06:55,106 dispatcher.py:197] Starting module "default" running at: http://localhost:8080
INFO 2015-10-16 05:06:55,112 admin_server.py:116] Starting admin server at: http://localhost:8000
INFO 2015-10-16 05:07:19,370 module.py:786] default: "GET / HTTP/1.1" 503 59
INFO 2015-10-16 05:07:29,509 module.py:786] default: "GET /favicon.ico HTTP/1.1" 503 59
--
You received this message because you are subscribed to the Google Groups "Dart Server-side and Cloud Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cloud+un...@dartlang.org.
Visit this group at http://groups.google.com/a/dartlang.org/group/cloud/.
Are you using pub serve?Do you have thing set in app.yaml?
DART_PUB_SERVE: 'http://localhost:[some port]'
I recently spend 20 hours trying to get dar running on an appengine managed vm. The dart experts on the dart slack were a great help. After 20 hours of running into problems and working with outdated documentation I finally gave up.
My ambition was to use dart, data store and memcache. I never got a VM running on Google's platform. I got one running locally in a docker container, but unable to debug it.
Im sorry to say that I think the current developer experience is awfull. Even for a alpha product.
I'm on windows 10. Using webstorm.
Dart for the browser is great but the documentation to get started on using dart server side with Google services is in such a bad state that I bet noone can get started. I would recommend removing the documentation as it is now or get it updated.
I'm sorry for the bad carma. I love dart. It awesome for the browser. I wish we could deliver better results for the dart on both client and server story.
PS. If you you want to know specifics about what went wrong I suggest just trying to get it running on windows 10 following the documentation. If someone is willing to work on the documentation I'm willing to help by testing the descriped procedure.
Tomas.
--
You received this message because you are subscribed to the Google Groups "Dart Server-side and Cloud Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cloud+un...@dartlang.org.
Visit this group at http://groups.google.com/a/dartlang.org/group/cloud/.
Same as tomas eilsoe. I spent days, and it doesn't work...
I got
INFO 2015-10-16 05:06:55,056 devappserver2.py:763] Skipping SDK update check.
INFO 2015-10-16 05:06:55,098 api_server.py:205] Starting API server at: http://localhost:63426
INFO 2015-10-16 05:06:55,106 dispatcher.py:197] Starting module "default" running at: http://localhost:8080
INFO 2015-10-16 05:06:55,112 admin_server.py:116] Starting admin server at: http://localhost:8000
INFO 2015-10-16 05:07:19,370 module.py:786] default: "GET / HTTP/1.1" 503 59
INFO 2015-10-16 05:07:29,509 module.py:786] default: "GET /favicon.ico HTTP/1.1" 503 59
The tutorials aren't up-to-date. It's so frustrating ...
It actually works great for me now Tristan. What is the error you get ?
--
You received this message because you are subscribed to the Google Groups "Dart Server-side and Cloud Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cloud+un...@dartlang.org.
Visit this group at https://groups.google.com/a/dartlang.org/group/cloud/.
dev_appserver.py --custom_entrypoint "dart bin/server.dart --port=8080" app.yaml I get
INFO 2016-03-05 13:44:39,527 application_configuration.py:431] No version specified. Generated version id: 20160305t134439
INFO 2016-03-05 13:44:39,528 devappserver2.py:769] Skipping SDK update check.
INFO 2016-03-05 13:44:39,560 api_server.py:205] Starting API server at: http://localhost:52613
INFO 2016-03-05 13:44:39,567 dispatcher.py:197] Starting module "default" running at: http://localhost:8080
INFO 2016-03-05 13:44:39,572 admin_server.py:116] Starting admin server at: http://localhost:8000
INFO 2016-03-05 13:44:59,350 module.py:787] default: "GET / HTTP/1.1" 503 59
INFO 2016-03-05 13:45:09,517 module.py:787] default: "GET /favicon.ico HTTP/1.1" 503 59
I'm just trying to run the simple hello_world provided in tutorial...
--