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.
- Host: GitHub
- URL: https://github.com/michaelfromyeg/elixir
- Owner: michaelfromyeg
- License: mit
- Created: 2024-01-29T23:27:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-29T23:44:52.000Z (over 1 year ago)
- Last Synced: 2025-02-08T12:13:59.117Z (5 months ago)
- Language: Elixir
- Size: 293 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 elixirmix 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
```