ProjectInfo
A Mix task for getting information about the current mix project
Installation
Add project_info to your list of dependencies in
mix.exs:def deps do
[{:project_info, "~> 1.0.0"}]end
Ensure project_info is started before your application:
def application do
[applications: [:project_info]]end
Usage
Get project name:
mix project_info.nameGet project version:
mix project_info.versionGet all the project config:
mix project_info.configGet an specific configuration parameter:
mix project_info.get default_task