flutter_devops_kit 0.1.3
flutter_devops_kit: ^0.1.3 copied to clipboard
FKIT (Flutter DevOps Kit) is a CLI toolkit for Flutter build automation, code generation, Firebase distribution, reusable modules, and project workflows.
/// Flutter DevOps Kit example workflow.
///
/// FKIT is primarily used as a command-line application.
///
/// Install globally:
///
/// ```bash
/// dart pub global activate flutter_devops_kit
/// ```
///
/// Initialize FKIT inside a Flutter project:
///
/// ```bash
/// fkit init
/// ```
///
/// Setup the project using the selected architecture template:
///
/// ```bash
/// fkit setup
/// ```
///
/// Generate a feature:
///
/// ```bash
/// fkit feat auth
/// ```
///
/// Install a reusable module:
///
/// ```bash
/// fkit install network
/// ```
void main() {}