-
Notifications
You must be signed in to change notification settings - Fork 164
Description
I just discovered dart_frog and it's awesome.
I'm new to using Dart on the backend, i'm used to node.js, using a tool named PM2 i can launch and monitor the node backend process and it automatically "resurect" it in case of a crash.
My goal is to migrate to dart_frog to share common code between the flutter frontend dans the backend, but i would like to keep the same deployment workflow.
So far i've seen that i can produce a binary with dart_frog build && dart compile exe bin/server.dart
and execute it to start the server. But i don't know how i can easily monitor the process and make it restart in case of a crash (can i use the Deamon for that ?).
I think it would be nice to have some documentation about how to deploy and manage a dart_frog API without Docker.