/elixir-chat-server

A chat server I'm building to see if I can

Primary LanguageElixir

Chat

TODO: Add description

Installation

If available in Hex, the package can be installed as:

  1. Add chat to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:chat, "~> 0.1.0"}]
end
```
  1. Ensure chat is started before your application:
```elixir
def application do
  [applications: [:chat]]
end
```