Daily quote app built with Flutter, powered by Unsplash
Find a file
2025-10-23 07:41:00 +07:00
.github/workflows initial commit (migrated) 2025-10-20 16:43:59 +07:00
android initial commit (migrated) 2025-10-20 16:43:59 +07:00
assets initial commit (migrated) 2025-10-20 16:43:59 +07:00
lib update deps and clean up (GH-2) 2025-10-20 20:21:50 +07:00
test initial commit (migrated) 2025-10-20 16:43:59 +07:00
.gitignore initial commit (migrated) 2025-10-20 16:43:59 +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
codemagic.yaml set play store manual review (GH-5) 2025-10-23 07:41:00 +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 update deps and clean up (GH-2) 2025-10-20 20:21:50 +07:00
pubspec.yaml update deps and clean up (GH-2) 2025-10-20 20:21:50 +07:00
README.md update deps and clean up (GH-2) 2025-10-20 20:21:50 +07:00

Kuwot

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

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