Skip to content

Instantly share code, notes, and snippets.

@bmitch
Created June 24, 2017 15:13
Show Gist options
  • Save bmitch/e73705784680c78438871ab2afc8edbf to your computer and use it in GitHub Desktop.
Save bmitch/e73705784680c78438871ab2afc8edbf to your computer and use it in GitHub Desktop.
organizing-a-project.md

Creating a project tree:

mix new <project name>

Running tests:

mix test

Run Elixir exression in context of your appplication

mix run -e 'Issues.CLI.run(["-h"])'

Run IEX and run mix before:

iex -S mix

List the dependencies and their status

mix deps

Download the dependencies:

mix depts.get

Make elixir app a command line script

mix escript.build

./issues elixir-lang elixir3 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment