Basic Elixir project using Mix in Devbox.
This project configures Hex and Mix to install packages + dependencies in local project directories. You can modify where these packages are installed by changing the variables in conf/set-env.sh
To run the project: mix run
To create a release: mix release
If available in Hex, the package can be installed
by adding elixir_hello
to your list of dependencies in mix.exs
:
def deps do
[
{:elixir_hello, "~> 0.1.0"}
]
end
Documentation can be generated with ExDoc
and published on HexDocs. Once published, the docs can
be found at https://hexdocs.pm/elixir_hello
.