Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 681 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 681 Bytes

PhoenixChat

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/

Screenshot

screenshot

Installation

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

$ docker-compose run web bash -c "mix do deps.get, deps.compile, ecto.create && npm install"
# docker-compose up