Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1249)

Unified Diff: pkg/appengine/README.md

Issue 804973002: Add appengine/gcloud/mustache dependencies. (Closed) Base URL: git@github.com:dart-lang/pub-dartlang-dart.git@master
Patch Set: Added AUTHORS/LICENSE/PATENTS files Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/appengine/PATENTS ('k') | pkg/appengine/codereview.settings » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/appengine/README.md
diff --git a/pkg/appengine/README.md b/pkg/appengine/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..261470122a2b7352a1b30dfdd62d88ef4a1454fb
--- /dev/null
+++ b/pkg/appengine/README.md
@@ -0,0 +1,46 @@
+This package provide support for running Dart on
+[Google App Engine Managed VMs][managed-vms].
+
+### Getting started
+
+Visit [dartlang.org/cloud](https://www.dartlang.org/cloud) for more information
+on the requirements for getting started.
+
+When you are up and running a simple hello world application looks like this:
+
+```
+import 'dart:io';
+import 'package:appengine/appengine.dart';
+
+void requestHandler(HttpRequest request) {
+ request.response
+ ..write('Hello, world!');
+ ..close();
+}
+
+void main() {
+ runAppEngine(requestHandler).then((_) {
+ // Server running.
+ });
+}
+```
+
+Add the application configuration in a `app.yaml` file and run it locally using
+by running:
+
+ gcloud preview app run app.yaml
+
+When you are ready to deploy your application, make sure you have authenticated
+with `gcloud` and defined your current project. Then run:
+
+ gcloud preview app deploy app.yaml
+
+### Send Feedback
+
+We'd love to hear from you! If you encounter a bug, have suggestions for our
+APIs or is missing a feature, file it an issue on the
+[GitHub issue tracker](https://github.com/dart-lang/appengine/issues/new).
+
+**Note** The Dart support for App Engine is currently in beta.
+
+[managed-vms]: https://developers.google.com/appengine/docs/managed-vms/
« no previous file with comments | « pkg/appengine/PATENTS ('k') | pkg/appengine/codereview.settings » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698