- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我现在可以运行 Dart 应用程序了
gcloud --verbosity debug preview app run app.yaml
也可以在 AppEngine 上部署和运行
gcloud --verbosity debug preview app deploy app.yaml
但我还没有找到将调试器连接到在开发服务器上运行的 Dart 应用程序的方法。
我找到了 http://dartbug.com/21067但仍然找不到让它发挥作用的方法。
另见 https://groups.google.com/a/dartlang.org/forum/#!topic/cloud/OK1nJtg7AjQ
最佳答案
该应用程序可以在没有 Docker 的情况下运行,然后像任何 Dart 命令行应用程序一样进行调试:来源。 https://groups.google.com/a/dartlang.org/d/msg/cloud/zrxgOHFz_lA/q5CdLLQPBAgJ
The API server is part of the App Engine SDK, and we are using it forrunning tests in the appengine package. If you look athttps://github.com/dart-lang/appengine/blob/master/tool/run_tests.shyou will see that it expects the environment variableAPPENGINE_API_SERVER.
The API server is in /platform/google_appengine/api_server.py
and takes a number of arguments. I just tested running it like this:
$ $CLOUD_SDK/platform/google_appengine/api_server.py \ -Adev~test-application \ --api_port 4444 \ --high_replication \
--datastore_path /tmp/datastoreTo run an app engine application outside the normal development serverrequires that a number of environment variables are set. This workedfor my application:
$ GAE_LONG_APP_ID=test-application \ GAE_MODULE_NAME=default \
GAE_MODULE_VERSION=version \ GAE_PARTITION=dev \ API_PORT=4444 \
API_HOST=127.0.0.1 \ dart bin/server.dartIn the Dart Editor you cannot set environment variables for eachlaunch configuration, so they have to be set globally before startingthe Dart Editor. In WebStorm it is possible to have run configurationspecific environment variables.
This simple setup will of cause not support everything the normaldevelopment server support. Some of the issues are:
- Only one application at the time as it is always listening on port8080 (can easily be made configurable) * The users API (mocking thisshouldn't be that difficult) * The modules API * No health-checks(should not be a problem) * All HTTP headers are direct from theclient (no x-appengine- headers) * The admin web interface is notavailable * Probably other stuff as well
This is all experimental, but it is one solution for a simplerdeveloper setup, which of cause does not match the deploymentenvironment as closely as the development server.
Running the API Server using Docker is also possible as the imagegoogle/cloud-sdk with the Cloud SDK is on hub.docker.com.
Use the following Dockerfile
FROM google/cloud-sdk EXPOSE 4444 ENTRYPOINT["/google-cloud-sdk/platform/google_appengine/api_server.py", \
"-A", "dev~test-application", \ "--api_port", "4444", \
"--high_replication", \ "--datastore_path", "/tmp/datastore"]Build and run
$ docker build -t api_server . $ docker run -d -p 4444:4444 api_server
Change API_HOST above to 192.166.59.103 (of wherever your Dockercontainers are) and run.
Regards, Søren Gjesse
从 DartEditors 调试器调试开始使用流血的 Dart 构建 1.8.0.edge_042017
.我假设下一个开发版本(可能是 1.9.0-dev1.0
)也将包括相关修复?
可在此处找到其工作原理的详细步骤:https://groups.google.com/a/dartlang.org/d/msg/cloud/OK1nJtg7AjQ/u-GzUDI-0VIJ
使用最新的 Dart 开发构建自定义 Docker 镜像 1.8.0-dev.4.6
.
Dart 团队实际上正在准备一个简单的方法来自己做这件事(参见 https://github.com/dart-lang/dart_docker )
在主机系统上安装最新的 bleeding_edge(使用此脚本 https://gist.github.com/zoechi/d240f56a32ed5649797f 或从 http://gsdview.appspot.com/dart-archive/channels/be/raw/latest/editor/darteditor-linux-x64.zip 手动下载)
将此添加到 app.yaml
文件
env_variables:
DBG_ENABLE: 'true'
# disable health-checking because this is so annoying during debugging
vm_health_check:
enable_health_check: False
参见 How to disable health checking for `gcloud preview app run`有关自定义健康检查的更多详细信息。
使用 glcoud --verbosity debug app run app.yaml
启动您应用程序的服务器代码或 glcoud --verbosity debug app run app.yaml index.yaml
等待 Docker 容器准备就绪(检查 docker ps
是否 Command
列显示以 /dart_runtime/dart_
开头的值
打开 DartEditor
打开菜单 Run > Remote Connection...
连接到:Command-line VM
主持人:localhost
如果你不t use
boot2docker or the IP address returned by the command
boot2docker ip`
端口:5005
Select Folder...
选择包含项目源代码的目录。
点击OK
设置断点并照常继续。
第一步是使用 Observatory其中包括一个基于浏览器的调试器 UI。
要完成这项工作,请将以下行添加到 app.yaml
文件
network:
forwarded_ports: ["8181"]
这对于制作 server.dart
可能也很有用。等到我们有机会使用天文台设置断点。
env_variables:
DART_VM_OPTIONS: '--pause-isolates-on-start'
boot2docker
给我们 Docker ip (192.168.59.103) 并在以 gcloud preview app run app.yaml
开始后我们可以连接到http://192.168.59.103:8181
这应该会打开 Observatory GUI。
关于google-app-engine - 如何调试 Dart AppEngine 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26807828/
昨晚我因为这个问题脑子崩溃了。在确保没有来 self 的 eclipse 错误检查的明显错误之后,我开始调试我的程序。顺便说一下,我正在使用 Jre7。无论如何,每次我进入我的类调用(我们称之为“a”
(前言:我对 C/C++ 还很陌生,我真的不知道 native 代码中的调试实际上是如何工作的。) 一些消息来源说 gdb 和 lldb 可以调试 any program compiled to ma
我正在尝试从 Visual Studio 2012 外部调试 T4Scaffolding.Core Nuget 包。我使用的是安装了 Powershell 3.0 的 Powershell ISE,并
如何调试汇编代码?我在 Linux 上使用 gdb。我知道我可以看寄存器。有哪些调试汇编代码的方法? 最佳答案 您当然可以使用 breakpoints就像 C 或任何其他编译语言一样。 This ar
如何在每次通话时打印列表或 haskell 中的内容,例如: funct a list = funct (a + 1) (a : list) print list her
让我用我对 Makefiles 或 make 知之甚少的评论作为这个问题的前缀。 有一个非常大的项目,每晚自动构建。它以 Debug 和 Release 模式构建,Debug 用于 Valgrind
我正在创建一个计算每周工资的程序,那么任何加类工资都是该周正常工资的 1.5 倍。我的代码如下: #include int main() { double payrate; double h
我使用的是 Visual Studio 2010 Express Developer 版本。开发网站。我在我的 .aspx 页面中使用 JavaScript。 如何在 Javascript 中放置断点
我最近开始修补 Project Euler 问题,并尝试用 Javascript 解决它们。这样做我往往会产生许多无限循环,现在我想知道是否有比终止 Firefox 或 Chrome 中的选项卡更好的
有没有办法在程序执行期间生成一个交互式 python 控制台(最好是 iPython)而不暂停主程序并且能够检查和修改程序变量?类似于浏览器为 JavaScript 提供的功能。 我知道 pdb.se
我正在使用 FFmpeg @ Android 并希望能够进入 FFmpeg 代码(Eclipse + Seqouya),同时编译 FFmpeg 我使用 --disable-stripping --en
我从使用互操作调用 win32 api 函数的 .net 进程中得到一个异常。 我有一个调试器,我想查看 LastError 的值。 是否可以从 Visual Studio 调试器中查看 LastEr
我正在尝试通过 VBA 创建一个宏,以在 IE 的多个选项卡中打开一组指定的链接。目前我正在使用下面的代码,如果我试图打开 3 个或更少的选项卡,它大部分时间都可以工作。任何超过 3 的代码都会在“N
好的,这似乎是一个愚蠢的问题,因为 MonoDevelop 越来越成熟,所以我确定我只是想念它,但我环顾四周,所有关于这个主题的问题似乎都是关于远程调试或 Mac 上的调试。 我使用的是 Ubuntu
如何调试 Rscripts是从命令行运行的? 我目前正在使用 getopt传递命令行选项的包,当有错误时,我很难: 看看到底出了什么问题; 在 R 中交互式调试(因为脚本需要命令行选项。) 有没有人有
支持 PDF 和网络上的信息很少。我碰巧在博客中看到一篇文章,提到 $.write() 或 $.writeln() 将向 javascript 控制台写入一个字符串。相当有用。有谁知道这个 $ 对象是
PyCharm 1.5 中是否可以使用 Firefox 和 Chrome 支持的 JavaScript 调试? 如果是这样,它能否与 Python/Django 调试器一起有效运行? 如果没有,有没有
我确定这以前发生在人们身上,某些东西在 Debug模式下工作,你在发布时编译,但有些东西坏了。 这发生在我在嵌入式 XP 环境中工作时,我发现最好的方法确实是编写一个日志文件来确定它会出错的地方。 您
我目前正在为即将到来的项目评估 Flow3。 AOP 模式和依赖注入(inject)将非常适合我们的目的。 现在我想不通的是如何在 Controller Action 中调试一些结果。 public
最初,我有一个包含测试服务器的 Django 应用程序。要调试此设置,我只需添加 import pdb; pdb.set_trace()代码中的任何位置,并且有一个断点将我扔到终端中的交互式调试器中(
我是一名优秀的程序员,十分优秀!