Phoenix powered "match game" to show off what I've learned writing Elixir the last few months
git clone https://github.com/toranb/elixir-match.git exampleTo run the Phoenix app with mix
- install elixir
brew install elixir- install postgres
brew install postgres- install dependencies
cd app
mix deps.get- run ecto create/migrate
cd app
mix ecto.create
mix ecto.migrate- start phoenix
cd app
iex -S mix phx.server- Use
elixir2019as invite code in login screen.
To run the app with docker
-
install docker
-
build and run the app with docker
docker-compose build
docker-compose up