An open API service indexing awesome lists of open source software.

https://github.com/michaelfromyeg/elixir

Hello, world in Elixir. For CPSC 418.
https://github.com/michaelfromyeg/elixir

Last synced: 3 months ago
JSON representation

Hello, world in Elixir. For CPSC 418.

Awesome Lists containing this project

README

        

# elixir

Hello, world in Elixir. For CPSC 418.

## Setup

Install dependencies.

```plaintext
sudo apt-get update
sudo apt-get install inotify-tools
```

```plaintext
brew install erlang elixir

mix local.hex
mix archive.install hex phx_new
```

Initialize a new project; install packages.

```plaintext
mix phx.new hello_world
cd hello_world
mix deps.get
```

Run the server.

```plaintext
mix phx.server
```