Updating CandidateFix
2 files changed
tree: b31ee5ea4d1384b7e7b8b50f058eb356e75f3000
  1. benchmark/
  2. bin/
  3. doc/
  4. example/
  5. lib/
  6. test/
  7. third_party/
  8. tool/
  9. .gitignore
  10. .gitmodules
  11. .travis.yml
  12. analysis_options.yaml
  13. app.yaml
  14. AUTHORS
  15. CHANGELOG.md
  16. Dockerfile
  17. LICENSE
  18. pubspec.yaml
  19. README.md
README.md

Dart Services

A server backend to support DartPad.

Build Status Coverage Status Uptime Status

What is it? What does it do?

This project is a small, stateless Dart server, which powers the front-end of DartPad. It provides many of DartPad's features, including static analysis (errors and warnings), compilation to JavaScript, code completion, dartdoc information, code formatting, and quick fixes for issues.

Running

To run the server, run:

dart bin/server_dev.dart --port 8082

The server will run from port 8082 and export several JSON APIs, like /api/compile and /api/analyze.

Testing

To run tests:

grind test for unit tests

or:

grind deploy for all tests and checks.

dart-services requires the redis package, including the redis-server binary, to be installed to run tests. sudo apt-get install redis-server will install this on Ubuntu, but see Redis' Quick Start guide for other platforms.

Deploying

To deploy the server to Dart on AppEngine, follow the instructions here.

Modify warmup.dart to point the BASE_URI to your AppEngine project.

Then run

./tool/deploy.sh

The will deploy the server, and run the warmup sequence and sanity checks.

Related projects

See also the dart-pad repo.

Issues and bugs

Please file reports on the GitHub Issue Tracker for DartPad.

License and Contributing

Contributions welcome! Please read this short guide first. You can view our license here.