mirror of
https://github.com/immich-app/immich.git
synced 2025-08-11 09:16:31 -04:00
* feat: use drift for logging * fix: tests * feat: use the truncate limit from constants.ts as default * chore: move setupAll to top level and restructure * chore: code review changes * fix: inherits * feat: raise log line limit to 2000 * limit getAll to 250 lines * delete DLog and make LogRepository not a singleton * fix: drift build settings and `make migration` * fix: tests * remove sensitive log --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
26 lines
970 B
YAML
26 lines
970 B
YAML
targets:
|
|
$default:
|
|
builders:
|
|
#drift @DriftDatabase()
|
|
drift_dev:
|
|
# Disable default builder to use modular builder instead
|
|
enabled: false
|
|
drift_dev:analyzer:
|
|
enabled: true
|
|
options: &drift_options
|
|
store_date_time_values_as_text: true
|
|
named_parameters: true
|
|
write_from_json_string_constructor: false
|
|
data_class_to_companions: false
|
|
# Required for make-migrations
|
|
databases:
|
|
main: lib/infrastructure/repositories/db.repository.dart
|
|
generate_for: &drift_generate_for
|
|
- lib/infrastructure/entities/*.dart
|
|
- lib/infrastructure/entities/*.drift
|
|
- lib/infrastructure/repositories/db.repository.dart
|
|
- lib/infrastructure/repositories/logger_db.repository.dart
|
|
drift_dev:modular:
|
|
enabled: true
|
|
options: *drift_options
|
|
generate_for: *drift_generate_for |