fire_pilot 1.0.2
fire_pilot: ^1.0.2 copied to clipboard
Elite Firebase setup orchestrator for Flutter. Automates Node.js install, multi-account login, project creation, and SHA registration.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate fire_pilotUse it
The package has the following executables:
$ fire_pilot
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add fire_pilotWith Flutter:
$ flutter pub add fire_pilotThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
fire_pilot: ^1.0.2Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:fire_pilot/commands/firebase_setup.dart';
import 'package:fire_pilot/services/env_service.dart';
import 'package:fire_pilot/services/feature_service.dart';
import 'package:fire_pilot/services/firebase_service.dart';
import 'package:fire_pilot/services/flutter_service.dart';
import 'package:fire_pilot/services/prompt_service.dart';
import 'package:fire_pilot/utils/process_runner.dart';