The BlockDrive Web App allows a user to log in to securely view, upload and manage their BlockDrive files.
If your environment is using homebrew, install the Flutter SDK with its cask as shown below. Alternatively, visit the [Flutter Installation Instructions][https://flutter.dev/docs/get-started/install] to get the Flutter SDK up and running for your OS / local setup.
# with homebrew
brew install --cask flutter
Then, generate the package imports with:
flutter pub get
Whenever changing branches or initially setting up, compile the codebase to resolve errors:
flutter pub run build_runner build --delete-conflicting-outputs
Then, to begin code generation and watch for changes, run:
flutter packages pub run build_runner watch
Finally, to start a development instance for web, run:
flutter run -d Chrome