aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorD Delmar Davis <don@suspectdevices.com>2026-04-26 20:13:11 -0700
committerD Delmar Davis <don@suspectdevices.com>2026-04-26 20:13:11 -0700
commit1ccb493d30f0e09ca6b39d98edc0c9171d67ac52 (patch)
treec0689f22e74a2970ae116545c81ab87aaf4af325 /README.md
parenta125ca3cfd1f31935adbc9c41900da7e76dcc21d (diff)
silly
Diffstat (limited to 'README.md')
-rw-r--r--README.md71
1 files changed, 69 insertions, 2 deletions
diff --git a/README.md b/README.md
index e15908c..299e825 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,69 @@
-# tryfle
-Try flet
+# Hello app
+
+## Run the app
+
+### uv
+
+Run as a desktop app:
+
+```bash
+uv run flet run
+```
+
+Run as a web app:
+
+```bash
+uv run flet run --web
+```
+
+For more details on running the app, refer to the [Getting Started Guide](https://flet.dev/docs/).
+
+## Build the app
+
+### Android
+
+```bash
+flet build apk -v
+```
+
+For more details on building and signing `.apk` or `.aab`, refer to the [Android Packaging Guide](https://flet.dev/docs/publish/android/).
+
+### iOS
+
+```bash
+flet build ipa -v
+```
+
+For more details on building and signing `.ipa`, refer to the [iOS Packaging Guide](https://flet.dev/docs/publish/ios/).
+
+### macOS
+
+```bash
+flet build macos -v
+```
+
+For more details on building macOS package, refer to the [macOS Packaging Guide](https://flet.dev/docs/publish/macos/).
+
+### Linux
+
+```bash
+flet build linux -v
+```
+
+For more details on building Linux package, refer to the [Linux Packaging Guide](https://flet.dev/docs/publish/linux/).
+
+### Windows
+
+```bash
+flet build windows -v
+```
+
+For more details on building Windows package, refer to the [Windows Packaging Guide](https://flet.dev/docs/publish/windows/).
+
+### Web
+
+```bash
+flet build web -v
+```
+
+For more details on building Web app, refer to the [Web Packaging Guide](https://flet.dev/docs/publish/web/).