From c33d383e8a8f68a52c330d4785d7edfefebf8181 Mon Sep 17 00:00:00 2001 From: vjrj <vjrj@comunes.org> Date: Sun, 19 Mar 2023 18:16:44 +0100 Subject: [PATCH] Update README with install instructions --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 28e5e3c5..ae0a31ce 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ users to manage their Äž1 currency on their mobile device using just a browser. [https://g1demo.comunes.net/](https://g1demo.comunes.net/) -## Installation +## Prerequisites This repository requires [Flutter](https://flutter.dev/docs/get-started/install) to be installed and present in your development environment. @@ -46,7 +46,18 @@ Get the dependencies. flutter pub get ``` -Run the app via command line or through your development environment. (optional) +## Build & deploy + +Something like this should work: +``` +flutter test +flutter build web --release +rsync --progress=info2 --delete -aH build/web/ youruser@yourserver:/var/www/ginkgo/ +``` + +## Development + +Run the app via command line or through your development environment. ```sh flutter run lib/main.dart -- GitLab