Installs Aludel by copying migrations to the host application.
Usage
$ mix aludel.install
This task will:
- Copy all Aludel migrations to your app's priv/repo/migrations/ directory
- Add timestamp prefixes to prevent conflicts
- Show you what was copied
Example
$ mix aludel.install
* copying priv/repo/migrations/20240101000001_create_prompts.exs
* copying priv/repo/migrations/20240101000002_create_runs.exs
...
After running this task, run mix ecto.migrate to apply the migrations.