Dart Framework
Dart Frog is supported in Alkimist.
Before deployment, make sure:
dart_frog build
Alkimist will use the generated build output when deploying.
Do not forget to create a healthcheck route file, for example routes/up.dart:
import 'package:dart_frog/dart_frog.dart';
Response onRequest(RequestContext context) {
// TODO: implement route handler
return Response(body: 'This is route is for healthcheck!');
}
Use /up as your healthcheck path in your deployment config.
dart_frog build.