Skip to content

Latest commit

 

History

History
54 lines (33 loc) · 1.79 KB

README.md

File metadata and controls

54 lines (33 loc) · 1.79 KB

BlockDrive Web

deploy contributions welcome

The BlockDrive Web App allows a user to log in to securely view, upload and manage their BlockDrive files.

Setting up the Development Environment

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