Add Flutter app skeleton

This commit is contained in:
Codex
2026-07-02 10:44:29 +09:00
parent 0e26060de7
commit 86a61939af
74 changed files with 2670 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
IMAGE="${FLUTTER_DOCKER_IMAGE:-ghcr.io/cirruslabs/flutter:stable}"
docker run --rm \
-u 0:0 \
-v "$ROOT_DIR:/workspace" \
-w /workspace/app \
"$IMAGE" \
sh -lc "flutter pub get && flutter $* && chown -R 1000:1000 /workspace/app"