elixir-match icon indicating copy to clipboard operation
elixir-match copied to clipboard

The original source code for https://elixirmatch.com

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 example

To run the Phoenix app with mix

  1. install elixir
brew install elixir
  1. install postgres
brew install postgres
  1. install dependencies
cd app
mix deps.get
  1. run ecto create/migrate
cd app
mix ecto.create
mix ecto.migrate
  1. start phoenix
cd app
iex -S mix phx.server
  1. Use elixir2019 as invite code in login screen.

To run the app with docker

  1. install docker

    https://docs.docker.com/docker-for-mac/

  2. build and run the app with docker

docker-compose build
docker-compose up