recommendedSingleSelections top-level constant

Map<String, String> const recommendedSingleSelections

Recommended's production-oriented Release 0.3 choices.

org.architecture_depth: confirmed clean against the shipped the embedded app-scaffold resource output (T056) — every feature under lib/features/<name>/ is split into data/, domain/, and presentation/ folders, matching this catalog's Clean Architecture definition exactly. This corrects data-model.md's tentative "Simple" assumption (R-202 †), which predated inspecting the real recipe.

Implementation

const recommendedSingleSelections = <String, String>{
  'foundation.app_initialization': 'bootstrap',
  'foundation.environment_config': 'dart_define',
  'foundation.flavors': 'basic',
  'foundation.logging': 'logger',
  'foundation.error_handling': 'global_boundary',
  'foundation.theme': 'material3',
  'foundation.localization': 'gen_l10n',
  'foundation.project_structure': 'feature_first',
  'org.architecture_depth': 'clean',
  'org.state_management': 'bloc',
  'org.routing': 'go_router',
  'org.data_modeling': 'freezed_json',
  'org.dependency_injection': 'get_it',
};