Initialize tdc114plus project docs

This commit is contained in:
Codex
2026-07-02 10:30:29 +09:00
commit 0e26060de7
7 changed files with 663 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
APP_DIR="$ROOT_DIR/app"
if ! command -v flutter >/dev/null 2>&1; then
echo "flutter command not found. Install Flutter SDK before running bootstrap." >&2
exit 127
fi
if [ ! -d "$APP_DIR" ]; then
echo "app directory does not exist. Run ./scripts/create-flutter-app.sh first." >&2
exit 1
fi
cd "$APP_DIR"
flutter pub get
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
APP_DIR="$ROOT_DIR/app"
if ! command -v flutter >/dev/null 2>&1; then
echo "flutter command not found. Install Flutter SDK before creating the app skeleton." >&2
exit 127
fi
if [ -d "$APP_DIR" ]; then
echo "app directory already exists: $APP_DIR" >&2
exit 0
fi
flutter create \
--platforms=android,ios \
--org kr.co.baron \
--project-name tdc114plus \
"$APP_DIR"
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
APP_DIR="$ROOT_DIR/app"
if ! command -v flutter >/dev/null 2>&1; then
echo "flutter command not found. Install Flutter SDK before running tests." >&2
exit 127
fi
cd "$APP_DIR"
flutter analyze
flutter test