a32d37ef84
This will contain the code for running the DTD server. When this is fully funcitonal VSCode will be responsible for running the, and letting our other tools(i.e. DevTools) know which address it is running at. Change-Id: Ia4cc9553f000a5e765f604541f4846b107d4d00c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/338501 Commit-Queue: Dan Chevalier <danchevalier@google.com> Reviewed-by: Devon Carew <devoncarew@google.com> Reviewed-by: Ben Konyi <bkonyi@google.com>
20 lines
472 B
Markdown
20 lines
472 B
Markdown
The server implementation for the Dart Tooling Daemon. This is meant to be run
|
|
by our internal tooling and facilitates communication between our internal
|
|
tools.
|
|
|
|
# Running the sample
|
|
|
|
## Running with the Dart SDK
|
|
|
|
You can run the example with the [Dart SDK](https://dart.dev/get-dart)
|
|
like this:
|
|
|
|
```
|
|
$ dart run bin/dtd_server.dart
|
|
The Dart Tooling Daemon is listening on 0.0.0.0:8080
|
|
```
|
|
|
|
## Compiling the binary
|
|
|
|
`dart compile exe bin/dtd_server.dart -o bin/dtd_server`
|