Elixir is a functional programming language, built on top the Erlang VM and leveraging its OTP Framework which allows Elixir to be a great language for concurrent and reliable applications.
- Download Elixir, iex, and asdf (an Elixir and Erlang Version Manager)
- Follow this guide to install the required versions of Elixir and Erlang using asdf
- Follow this guide to install Phoenix
- Clone this repo with
git clone [email protected]:matthewfollegot/Elixir-Hangman.git
if using SSH orgit clone https://github.com/matthewfollegot/Elixir-Hangman.git
if using HTTPS - Run
mix deps.get
&mix compile
- To play the game locally on the CLI run
iex -S mix
inhangman/
- In
http_client/
runmix phx.server
to launch the server