Packages
igniter_new
0.5.31
0.5.34
0.5.33
0.5.32
0.5.31
0.5.30
0.5.29
0.5.28
0.5.27
0.5.26
0.5.25
0.5.24
0.5.23
0.5.22
0.5.21
0.5.20
0.5.19
0.5.18
0.5.17
0.5.16
0.5.15
0.5.14
0.5.13
0.5.12
0.5.11
0.5.10
0.5.9
0.5.8
0.5.7
0.5.6
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.4.12
0.4.11
0.4.10
0.4.9
0.4.8
0.4.7
0.4.6
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
Create a new mix project with igniter, and run igniter installers in one command!
Current section
Files
Jump to
Current section
Files
priv/docs/igniter.install/long.txt
Install a package or packages, running any Igniter installers.
## Args
mix igniter.install package1 package2 package3
## Package formats
* `package` - The latest version of the package will be installed, pinned
at the major version, or minor version if there is no major version yet.
* `package@version` - The package will be installed at the specified
version. If the version given is generic, like `3.0`, it will be pinned as
described above. if it is specific, like `3.0.1`, it will be pinned at that
*exact* version with `==`.
* `package@git:git_url` - The package will be installed from the
specified git url.
* `package@github:project/repo` - The package will be installed from the
specified github repo.
* `package@github:project/repo@ref` - The package will be installed from
the specified github repo, at the specified ref (i.e tag, branch, commit).
* `package@path:path/to/dep` - The package will be installed from the
specified path.
* `org/package` - The package exists in a private Hex organization. This
can be used along with all the options above, e.g. `org/package@version`.
Additionally, a Git ref can be specified when using `git` or `github`:
* `package@git:git_url@ref`
## Options
* `--only` - Install the requested packages in only a specific
environment(s), i.e `--only dev`, `--only dev,test`
## Switches
* `--dry-run` - Run the task without making any changes.
* `--yes` - Automatically answer yes to any prompts.
* `--yes-to-deps` - Automatically answer yes to any prompts about
installing new deps.
* `--verbose` - Display additional output from various operations.
* `--example` - Request that installed packages include initial example
code.
`argv` values are also passed to the igniter installer tasks of installed
packages.