Daily quote app built with Flutter, powered by Unsplash
Find a file
fiatcode 2cbbd839fb
All checks were successful
CI / analyze-and-test (push) Successful in 1m22s
ci: run on prebuilt flutter-android image, drop per-run toolchain setup
2026-06-10 14:32:57 +07:00
.forgejo/workflows ci: run on prebuilt flutter-android image, drop per-run toolchain setup 2026-06-10 14:32:57 +07:00
android chore: forgejo CI and cleanup (#1) 2026-06-09 15:27:59 +07:00
assets initial commit (migrated) 2025-10-20 16:43:59 +07:00
lib chore: forgejo CI and cleanup (#1) 2026-06-09 15:27:59 +07:00
test chore: forgejo CI and cleanup (#1) 2026-06-09 15:27:59 +07:00
.gitignore chore: untrack local CI runbook 2026-06-09 15:40:23 +07:00
.metadata initial commit (migrated) 2025-10-20 16:43:59 +07:00
analysis_options.yaml initial commit (migrated) 2025-10-20 16:43:59 +07:00
devtools_options.yaml initial commit (migrated) 2025-10-20 16:43:59 +07:00
LICENSE initial commit (migrated) 2025-10-20 16:43:59 +07:00
pubspec.lock chore: forgejo CI and cleanup (#1) 2026-06-09 15:27:59 +07:00
pubspec.yaml chore: release 1.2.29+29 2026-06-09 15:53:27 +07:00
README.md Update README.md 2026-03-26 10:33:50 +01:00

Kuwot

Daily quote app with beautiful pics from Unsplash, built with Flutter 🚀

Get it on Google Play

Environment Variables

Visual Studio Code

Add or modify .vscode/launch.json, fills out the required environment variables.

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "kuwot-app (dev)",
            "request": "launch",
            "type": "dart",
            "args": [
                "--dart-define=QUOTE_API_SCHEME=http",
                "--dart-define=QUOTE_API_HOST=10.0.2.2",
                "--dart-define=QUOTE_API_PORT=8080",
                "--dart-define=SENTRY_DSN=optional"
            ]
        }
    ]
}

Android Studio (or IntelliJ)

Add or modify run/debug configurations, add the following environment variables to the Additional run args field.

--dart-define=QUOTE_API_SCHEME=http
--dart-define=QUOTE_API_HOST=10.0.2.2
--dart-define=QUOTE_API_PORT=8080
--dart-define=SENTRY_DSN=optional