fix: update mobile app development commands for clarity and consistency

This commit is contained in:
Achintha Isuru
2025-11-18 23:31:14 -05:00
parent 5f17b001d4
commit ecf2685136
2 changed files with 68 additions and 53 deletions

View File

@@ -69,11 +69,11 @@ help:
@echo ""
@echo " --- MOBILE APP DEVELOPMENT ---"
@echo " make mobile-client-install - Install dependencies for client app"
@echo " make mobile-client-dev - Run client app in development mode"
@echo " make mobile-client-dev - Run client app in dev mode"
@echo " make mobile-client-build - Build client app (requires ENV & PLATFORM, optional BUILD_TYPE=apk)"
@echo ""
@echo " make mobile-staff-install - Install dependencies for staff app"
@echo " make mobile-staff-dev - Run staff app in development mode"
@echo " make mobile-staff-dev - Run staff app in dev mode"
@echo " make mobile-staff-build - Build staff app (requires ENV & PLATFORM, optional BUILD_TYPE=apk)"
@echo ""
@echo " --- DEPLOYMENT ---"
@@ -332,7 +332,7 @@ dataconnect-deploy:
# --- Mobile App Development ---
FLAVOR :=
ifeq ($(ENV),dev)
FLAVOR := development
FLAVOR := dev
else ifeq ($(ENV),staging)
FLAVOR := staging
else ifeq ($(ENV),prod)
@@ -346,9 +346,9 @@ mobile-client-install:
@cd mobile-apps/client-app && $(FLUTTER) pub get
mobile-client-dev:
@echo "--> Running client app in development mode..."
@echo "--> Running client app in dev mode..."
@echo "--> If using VS code, use the debug configurations"
@cd mobile-apps/client-app && $(FLUTTER) run --flavor development -t lib/main_dev.dart
@cd mobile-apps/client-app && $(FLUTTER) run --flavor dev -t lib/main_dev.dart
mobile-client-build:
@if [ "$(ENV)" != "dev" ] && [ "$(ENV)" != "staging" ] && [ "$(ENV)" != "prod" ]; then \
@@ -373,9 +373,9 @@ mobile-staff-install:
@cd mobile-apps/staff-app && $(FLUTTER) pub get
mobile-staff-dev:
@echo "--> Running staff app in development mode..."
@echo "--> Running staff app in dev mode..."
@echo "--> If using VS code, use the debug configurations"
@cd mobile-apps/staff-app && $(FLUTTER) run --flavor development -t lib/main_dev.dart
@cd mobile-apps/staff-app && $(FLUTTER) run --flavor dev -t lib/main_dev.dart
mobile-staff-build:
@if [ "$(ENV)" != "dev" ] && [ "$(ENV)" != "staging" ] && [ "$(ENV)" != "prod" ]; then \