A fast, minimalistic backend framework for Dart π―
Developed with π by Very Good Ventures π¦
For official documentation, please visit dartfrog.vgv.dev.
In order to use Dart Frog you must have the Dart SDK installed on your machine.
# π¦ Install the dart_frog cli from source
dart pub global activate dart_frog_cli
Use the dart_frog create
command to create a new project.
# π Create a new project called "my_project"
dart_frog create my_project
Next, open the newly created project and start the dev server via:
# π Start the dev server
dart_frog dev
Create a production build which includes a DockerFile
so that you can deploy anywhere:
# π¦ Create a production build
dart_frog build
View the full documentation here.