2026-01-09 08:28:28 +00:00
|
|
|
|
2026-02-17 08:38:00 +00:00
|
|
|
all: clean-container build-builders build-linux-debug-container
|
2026-01-10 12:59:55 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
build-container:
|
2026-02-07 10:45:25 +00:00
|
|
|
./flutterw --build-container
|
2026-01-09 08:28:28 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
clean-container: build-container
|
2026-02-07 10:07:11 +00:00
|
|
|
./flutterw clean
|
2026-01-09 08:28:28 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
pub-get-container: build-container
|
2026-02-07 10:07:11 +00:00
|
|
|
./flutterw pub get
|
2026-01-09 08:28:28 +00:00
|
|
|
|
2026-02-11 08:39:40 +00:00
|
|
|
test: pub-get-container
|
|
|
|
|
./flutterw test
|
|
|
|
|
|
|
|
|
|
build-builders: build-container
|
|
|
|
|
./flutterw pub run build_runner build --delete-conflicting-outputs
|
|
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
build-android-release-container: pub-get-container
|
2026-02-07 10:07:11 +00:00
|
|
|
./flutterw build apk --release
|
2026-01-09 08:28:28 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
build-linux-debug-container: pub-get-container
|
2026-02-07 10:07:11 +00:00
|
|
|
./flutterw build linux --debug
|
2026-01-09 08:28:28 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
build-web-debug-container: pub-get-container
|
2026-02-07 10:07:11 +00:00
|
|
|
./flutterw build web --debug
|
2026-01-09 08:28:28 +00:00
|
|
|
|
2026-01-31 18:53:12 +00:00
|
|
|
run-linux-debug-container: pub-get-container
|
2026-02-07 10:07:11 +00:00
|
|
|
./flutterw run -d linux
|
2026-01-28 13:06:57 +00:00
|
|
|
|
2026-01-31 18:53:12 +00:00
|
|
|
run-web-debug-container: pub-get-container
|
2026-02-07 10:07:11 +00:00
|
|
|
./flutterw run --web-port $${WEB_PORT:-8081} -d web-server
|
2026-01-31 18:53:12 +00:00
|
|
|
|
|
|
|
|
run-linux-debug-native: build-linux-debug-container
|
2026-01-28 13:06:57 +00:00
|
|
|
./build/linux/x64/debug/bundle/d4rt_formulas
|
2026-01-28 12:35:17 +00:00
|
|
|
|
2026-01-31 18:53:12 +00:00
|
|
|
run-web-debug-native: build-web-debug-container
|
2026-02-01 15:16:04 +00:00
|
|
|
cd build/web && python3 -m http.server $${WEB_PORT:-8081}
|
2026-02-09 16:10:47 +00:00
|
|
|
|
|
|
|
|
ai:
|
|
|
|
|
qwen --prompt-interactive --yolo "Read CLAUDE.md. Implement first task not already done in TODO.md"
|