Debugging, Building and Deploying a Flutter Web App to App Engine

preview_player
Показать описание
Have you wanted to figure out how to debug, build and deploy your flutter web app on a Dart web server on App Engine? This video covers hosting your Flutter web app using a Dart http web server in a Docker container in an App Engine Flex environment.

Рекомендации по теме
Комментарии
Автор

I wanna write a dockerfile for my already built flutterflow project, which I'm supposed to deploy on app engine. Can somebody help me out?

PrincePrashant-chsb
Автор

Dart SDK is updated and you should update the server/pubspec.yaml file to the following. Otherwise you will get error when you run dart ./lib/server.dart

server/pubspec.yaml:
name:
description: Web server sandbox
version: 0.0.1
author: Brandon Donnelson

environment:
sdk: '>=2.10.0 <3.0.0'

dependencies:
mime_type: ^1.0.0

sajadrahmdel