discourse/migrations
Gerhard Schlager 5ac69076c1
REFACTOR: Simplify converter steps in migration tooling (#29779)
* Remove unused `report_progress_in_percent` option from step
* Remove `use_custom_progress_increment` option from the step because we can figure it out by looking at the progress
* Introduce `StepTracker` to for logging warnings and errors and tracking step progress
* Make it easier to log warnings and errors in all methods of `Step` without the need to pass around a `stats` object
2024-11-19 23:54:37 +01:00
..
bin FIX: migrations-tooling CLI didn't work anymore (#29777) 2024-11-19 23:51:53 +01:00
config REFACTOR: Simplify converter steps in migration tooling (#29779) 2024-11-19 23:54:37 +01:00
db DEV: Store details log entries in converter as JSON (#29778) 2024-11-19 23:54:00 +01:00
docs DEV: Add initial structure for migrations-tooling 2023-10-13 16:03:55 +02:00
lib REFACTOR: Simplify converter steps in migration tooling (#29779) 2024-11-19 23:54:37 +01:00
scripts DEV: Add converter framework for migrations-tooling (#28540) 2024-09-09 17:14:39 +02:00
spec REFACTOR: Simplify converter steps in migration tooling (#29779) 2024-11-19 23:54:37 +01:00
.gitignore DEV: Refactor uploads_importer script (#29292) 2024-10-31 13:31:12 +00:00
README.md DEV: Add converter framework for migrations-tooling (#28540) 2024-09-09 17:14:39 +02:00

Migrations Tooling

Command line interface

./bin/cli help

Converters

Public converters are stored in lib/converters/. If you need to run a private converter, put its code into a subdirectory of private/converters/

Development

Installing gems

bundle config set --local with migrations
bundle install

Updating gems

bundle update --group migrations

Running tests

You need to execute rspec in the root of the project.

bin/rspec --default-path migrations/spec