Skip to content

Instantly share code, notes, and snippets.

@richard-flosi
Created July 14, 2020 00:08
Show Gist options
  • Save richard-flosi/766040cec9bd2ea5da7a33bc01706de4 to your computer and use it in GitHub Desktop.
Save richard-flosi/766040cec9bd2ea5da7a33bc01706de4 to your computer and use it in GitHub Desktop.
Build Script to Deploy Flutter Web app on Netlify
#!/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"
[build]
command = "./build.sh"
publish = "build/web"
@pyplacca
Copy link

Thanks, @Gene-Dana
Got the app live and running.

@Gene-Dana
Copy link

🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment