-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
33 lines (25 loc) Β· 750 Bytes
/
setup.sh
File metadata and controls
33 lines (25 loc) Β· 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
# INSURE App Setup Script
echo "π Setting up INSURE App..."
# Check if Flutter is installed
if ! command -v flutter &> /dev/null; then
echo "β Flutter not found. Please install Flutter first."
echo "Visit: https://docs.flutter.dev/get-started/install"
exit 1
fi
echo "β
Flutter found"
# Check Flutter version
echo "π Checking Flutter doctor..."
flutter doctor
# Install dependencies
echo "π¦ Installing dependencies..."
flutter pub get
# Check for issues
echo "π Analyzing code..."
flutter analyze
echo "π Setup complete!"
echo ""
echo "Next steps:"
echo "1. Follow FIREBASE_SETUP.md to configure Firebase"
echo "2. Run 'flutter run' to start the app"
echo "3. Enjoy your warranty management app!"