A Flutter application for baseball draft management.
This project includes a Docker setup for consistent development across teams.
Prerequisites:
- Docker and Docker Compose installed
Quick Start:
# Build the development container
docker compose build
# Start the container
docker compose up -d
# Enter the container
docker compose exec flutter-dev bash
# Inside the container, get dependencies and run
flutter pub get
flutter run -d web-server --web-port=8080 --web-hostname=0.0.0.0Access the app at http://localhost:8080
Useful Commands (inside container):
# Run tests
flutter test
# Build for web
flutter build web --release
# Check Flutter setup
flutter doctorPrerequisites:
- Flutter SDK 3.38.5 or later
- Dart SDK ^3.10.4
flutter pub get
flutter run -d chrome