Fluxy CLI
The official command-line tool for Fluxy projects.
Fluxy CLI
The Fluxy CLI facilitates project scaffolding, accelerated development, and cloud integration. It is designed to automate the heavy lifting of project management and DevOps.
Installation
Install the Fluxy CLI globally via Dart:
dart pub global activate fluxyCore Commands
fluxy init <app_name>
Scaffolds a new Fluxy project with the official architecture, boilerplate, and pre-configured state management.
fluxy init my_awesome_appfluxy run
The optimized development runner for Fluxy projects. It provides faster hot-reloads and environment-specific optimizations compared to standard runners.
fluxy runfluxy doctor
Checks your environment for Flutter and Fluxy compatibility and reports potential issues.
fluxy doctorCloud Integration
Fluxy CLI provides built-in tools for CI/CD and cloud-based build systems.
fluxy cloud build <android|ios>
Automatically configures GitHub Actions and cloud build environments for automated builds. It handles signing configurations and dependency management.
fluxy cloud build androidfluxy cloud deploy
Sets up and executes automated deployment pipelines to TestFlight (iOS) and Google Play (Android). It automates the submission process and metadata management.
fluxy cloud deployGenerators
Generate components and boilerplate quickly to maintain project consistency.
fluxy gen:page <Name>
Generates a new View, Controller, and Route entry.
fluxy gen:page Homefluxy gen:controller <Name>
Generates a standalone reactive controller for global or modular state.
fluxy gen:controller Auth