An example Elixir chat app using Phoenix channels and presence. Follow along at the companion blog post:
http://work.stevegrossi.com/2016/07/11/building-a-chat-app-with-elixir-and-phoenix-presence/
Requires Erlang and Elixir.
$ git clone [email protected]:stevegrossi/phoenix_chat.git
$ cd phoenix_chat
$ mix deps.get
$ npm install
$ mix ecto.create
$ mix phoenix.server
$ docker-compose run web bash -c "mix do deps.get, deps.compile, ecto.create && npm install"
# docker-compose up