Spoiler ahead! In this repository's koans/koans_test.exs
, I'm storing my own solutions to the exercises found in Programming Elixir.
# install dependencies
mix deps.get
# clean dependencies
mix deps.clean --all
# check code quality
mix dogma
# run tests
elixir *_test.exs
# launch interactive session with mix setup
iex -S mix
# launch phoenix with iex session
iex -S mix phoenix.server
# visually inspect applications from iex
:observer.start()
# run one function
mix run -e "Issues.CLI.process(:help)"
mix phoenix.new web_hello_world --no-brunch
mix deps.get
(then truncate loads of stuff)