Search code examples
flutterhostingflutter-web

How to deploy flutter web app on isp manager


I am new to flutter web hosting and the client gave me isp manager server to host the app on it.

I have searched a lot but with no good result.

Plus on that. I have never host any website before because I'm mobile developer.


Solution

  • First: Build your Flutter Web App with the following command:

    flutter build web
    

    You will find the result of the build inside the folder build/web with contents similar to the following:

    ├───assets
    │   ├───assets
    │   │   ├───images
    │   │   └───translations
    │   ├───fonts
    │   └───packages
    │       ├───cupertino_icons
    │       │   └───assets
    │       └───easy_localization
    │           └───i18n
    ├───canvaskit
    │   └───profiling
    └───icons
    

    Second: Use this official video guide from ISPsystem to learn how to host the web app.

    Note that the files you will uploading for the web app will be all content of build/web folder.