Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

soliplex/flutter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

320 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Soliplex Flutter

Flutter CI

Flutter frontend for Soliplex RAG platform.

Development

flutter pub get
flutter run -d chrome --web-port 59001

Testing

flutter test

Pre-commit Hooks

Pre-commit hooks enforce code quality on every commit:

  • dart format - Ensures consistent code formatting (excludes generated schema files)
  • flutter analyze - Catches errors, warnings, and lint issues (includes Flutter-specific checks)
  • gitleaks - Prevents committing secrets
  • no-commit-to-branch - Blocks direct commits to main/master

Install uv (if not already installed):

# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Install pre-commit using uv:

uv tool install pre-commit

Set up hooks for this repository:

pre-commit install

Run pre-commit on all files:

pre-commit run --all-files

Related