- Issue created by @swirt
- πΊπΈUnited States swirt Florida
The preview environment will only exit for 5 days. (closing an re-opening an the MR will recreate it)
u: admin
p: admin
will get you in. - πΊπΈUnited States nicxvan
Thank you! I don't quite see the benefit of tugboat for this project, it needs so many things to run including drush and there are no visual elements, am I missing something?
- πΊπΈUnited States swirt Florida
Good question. Maybe of limited benefit, or might be a real help. I am not sure what additional you might need but this can be pretty easily extended by adding other calls for other modules (that are not official dependencies) by adding them like this line
https://git.drupalcode.org/project/migrate_boost/-/merge_requests/10/dif...
and then enabling by replicating this line
https://git.drupalcode.org/project/migrate_boost/-/merge_requests/10/dif...Additionally whatever drush commands that need to be run can be added like this
https://git.drupalcode.org/project/migrate_boost/-/merge_requests/10/dif...I am not sure exactly what would be helpful to your maintainership but off the top of my head it might look something like
- composer require pathato (because it is not a dependency but is part of your config install)
- composer require migrate_plus
- drush Enable migrate_plus
- Druah enable the submodule migrate_example
- drush run at least one of the example migrations.
This would give you an environment that has run a migration with migrate boost enabled. You would see in the terminal output (tugboat log) if there was an error. I am not sure what kind of things you would look for to validate that there were no problems introduced by migrate_boost.
Even without doing all the additional steps, it gives you clean environment where your module was just enabled. You can make sure it throws no errors when enabled or when looking at perms or anything else that might be relevant or is not missing a dependency.
- πΊπΈUnited States swirt Florida
I added a commit calling out what I suggested. We'll see if it works. It may take a few attempts.