Skip to content
This repository has been archived by the owner on Apr 26, 2021. It is now read-only.

Deployment to AppEngine

Tobe O edited this page Feb 14, 2018 · 5 revisions

You can use package:appengine with Angel easily, just by passing it your app's handleRequest method:

import 'package:angel_framework/angel_framework.dart';
import 'package:appengine/appengine.dart';

void main() async {
  var app = new Angel();
  var http = new AngelHttp(app);
  // ...

  await runAppEngine(http.handleRequest);
}
Clone this wiki locally