Created
July 14, 2020 00:08
-
-
Save richard-flosi/766040cec9bd2ea5da7a33bc01706de4 to your computer and use it in GitHub Desktop.
Build Script to Deploy Flutter Web app on Netlify
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Get flutter | |
git clone https://github.com/flutter/flutter.git | |
FLUTTER=flutter/bin/flutter | |
# Configure flutter | |
FLUTTER_CHANNEL=master | |
FLUTTER_VERSION=v1.17.0 | |
$FLUTTER channel $FLUTTER_CHANNEL | |
$FLUTTER version $FLUTTER_VERSION | |
$FLUTTER config --enable-web | |
# Build flutter for web | |
$FLUTTER build web | |
echo "OK" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[build] | |
command = "./build.sh" | |
publish = "build/web" |
Do you have any suggestions on how I can fix that? Your help would be greatly appreciated π.
It seems as if there were issues giving executable permissions to the build file.
I wrote a guide here that you can use to make certain every step is correct
Thanks, @Gene-Dana. I'll read the guide
Thanks, @Gene-Dana
Got the app live and running.
π
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems as if there were issues giving executable permissions to the build file.
I wrote a guide here that you can use to make certain every step is correct
https://learn2teach.super.site/links/knowledge-bank/topics/product/how-to-properly-deploy-flutter-web-with-netlify