# `mix aludel.install`
[🔗](https://github.com/ccarvalho-eng/aludel/blob/main/lib/mix/tasks/aludel.install.ex#L1)

Installs Aludel by copying migrations to the host application.

## Usage

    $ mix aludel.install

This task will:
1. Copy all Aludel migrations to your app's priv/repo/migrations/ directory
2. Add timestamp prefixes to prevent conflicts
3. 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.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
