How to deploy flutter web on server?

61,931

Solution 1

[UPDATE]

To create a production build for web now Flutter supports flutter build web command similar to other platforms (android and ios) and you will see

build/web

folder generated with the assets folder and you can simply deploy it on your server.

[OLD ANSWER STEP 1 & 2 No longer required ]

you simply need to do a production build by using a webdev tool. to install webdev you need a pub tool,

  1. so go to the location where you have dart SDK installed and inside the bin folder you should have a pub batch file. You need to provide the bin folder's path to the environment variable in order to use pub from cmd.

  2. now open cmd and hit the below command to install webdev

    pub global activate webdev

    // in your intelliJ Idea terminal

  3. now go to the root folder of your project and do a build in release mode

    flutter build web

  4. you should see a build folder (/build/web) in the root directory, just copy that folder and host it on a web server.

I used the same way to deploy it to GitHub pages here's how in detail guide.

Some useful link: https://dart.dev/tools/webdev#build

Here's the running flutterweb app

Solution 2

You can deploy your flutter web app in a shared hosting with Nodejs or in VPS server with Python Follow this Medium Blog Post

enter image description here

After you build your flutter web app with "flutter build web" and you want to host it in a shared hosting plan prepare your nodejs app as a simple server for your flutter web app here is sample code

app.js

var express = require('express');
var path = require('path');
var cookieParser = require('cookie-parser');
var logger = require('morgan');

var app = express();

app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public-flutter')));


module.exports = app;

package.json

{
  "name": "flutter-web-app",
  "version": "0.0.0",
  "private": true,
  "scripts": {
    "start": "node ./bin/www"
  },
  "dependencies": {
    "cookie-parser": "~1.4.4",
    "debug": "~2.6.9",
    "express": "~4.16.1",
    "morgan": "~1.9.1"
  }
}

Create a folder and name it (“public-flutter”) and then put your flutter web app in the folder you have just created so nodejs can serve it through his server if you are in a shared hosting just continue with the Blog Post here

and if you are in a VPS server then run this command if you want to server the nodejs app

node app.js

or if you don't want nodejs just use python in your flutter web app to serve it as a simple http server with this command

nohup python -m SimpleHTTPServer 8000 &

Just make sure you are in your web app folder when you run the command. “nohub” will let the command keep running even if you closed the SSH session on Linux . Or you can server your app through Dart pub/webdev tools by using the dhttpd package.

Solution 3

if you want to use your own server over web e.q your virtual private host or other host over net :

go to the root folder of your project and do a build in release mode flutter build web,then

upload (/build/web)directory to your server , you can follow this link and configure IIS on windows server.

Solution 4

Here is the simple way to deploy your flutter web application on amazon web server.

Following is the simple process i follow.

  1. Build flutter web: flutter build web —release
  2. Create instance on aws ec2 server: mean allocate some memory for your website on server. Instance is the virtual server in aws cloud.
  3. Connect to your server(instance) with the help of putty :
  4. Install Vesta control panel on your server. (you can install other control panel too if you don't like vesta).
  5. Upload your content(website) on server.(With the help of FileZilla you can easily upload your website content on server)

Here is the simple video tutorial: https://youtu.be/htuHNO9JeRU

Solution 5

If it's a Firebase project you can use Firebase Hosting.

It will ask you to install Firebase Tools on your system and you will have to initialize it on the root folder of your project.

Then you just have to:

flutter build web
firebase deploy

and refresh browser (maybe with ctrl + F5 or ctrl + shift + r)

Share:
61,931
John
Author by

John

me :: Haskell -> Scala -> Kotlin -> programmer

Updated on July 09, 2022

Comments

  • John
    John almost 2 years

    I was learning Flutter web. Now I want to deploy this code in the real server. The flutter code here: in the lib folder

    void main() => runApp(new MyApp());    
    class MyApp extends StatelessWidget {
      @override
      Widget build(BuildContext context) {
        return MaterialApp(
          title: 'Flutter layout demo',
          home: Scaffold(
            appBar: AppBar(
              title: Text('Flutter layout demo'),
            ),
            body: Center(
              child: Text('Hello World'),
            ),
          ),
        );
      }
    }
    

    How can I deploy this code on the server ? I am new on the Flutter web.

  • Magnus
    Magnus almost 5 years
    In my case only index.html, main.dart.js and assets are actually needed on the production server. The app works fine without the packages folder (perhaps because I'm not importing any external plugins?). Anyway, since the packages folder is 50 MB and contains 330 items, removing it dramatically speeded up my upload time.
  • Mahesh Jamdade
    Mahesh Jamdade about 4 years
    @MagnusW yes that works too,thanks for mentioning that :)
  • chirag patel
    chirag patel almost 4 years
    is there any video tutorial?
  • Mahesh Jamdade
    Mahesh Jamdade almost 4 years
    You can find many resources online ,flutter.dev is the right place to go and I am sorry if this is not clear to you I wrote this long back and flutter web has evolved a lot over time, let me know if you have any issue deploying it should be straight forward ?I would be happy to help : )
  • Leonardo Costa
    Leonardo Costa almost 3 years
    Tip for help anothers: release flag has two dashes like "--release". But "--release" already is the default mode.
  • iosdev1111
    iosdev1111 over 2 years
    @MaheshJamdade Can we use apache web server to host flutter web app, Do we need to add any additional components on server side, my flutter web app uses firebase API, what are the server configurations required to host flutter web app.
  • heathscliff
    heathscliff over 2 years
    Hi, I wonder if we use the node js using your code, and after we enter "node app.js" how can we open the app in the browser? Are we still need a port (domain.com:port)?