Triplex v1.3.0 Mix.Triplex View Source

Useful functions for any triplex mix task.

Here is the list of tasks we have for now:

Link to this section Summary

Functions

Ensures the given repository is started and running

Ensures the migrations path exists for the given repo

Restarts the app if there was any migration command

Runs the tenant migrations with the given args and using migrator function

Returns the private repository path relative to the source

Link to this section Functions

Link to this function ensure_started(repo, opts) View Source
ensure_started(Mix.Ecto.Repo.t(), Keyword.t()) :: {:ok, pid() | nil, [atom()]}

Ensures the given repository is started and running.

Link to this function ensure_tenant_migrations_path(repo) View Source

Ensures the migrations path exists for the given repo.

Returns the path for the repo tenant migrations folder if succeeds or Mix.raise’s if it fails.

Link to this function restart_apps_if_migrated(apps, list) View Source
restart_apps_if_migrated([atom()], list()) :: :ok

Restarts the app if there was any migration command.

Link to this function run_tenant_migrations(args, direction, migrator \\ &Migrator.run/4) View Source

Runs the tenant migrations with the given args and using migrator function.

Returns the private repository path relative to the source.