Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pjullrich/run-elixir
Learn Elixir in 30min through Examples
https://github.com/pjullrich/run-elixir
Last synced: 2 months ago
JSON representation
Learn Elixir in 30min through Examples
- Host: GitHub
- URL: https://github.com/pjullrich/run-elixir
- Owner: PJUllrich
- License: mit
- Created: 2024-08-23T06:25:21.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-27T11:08:45.000Z (3 months ago)
- Last Synced: 2024-10-14T06:14:39.232Z (3 months ago)
- Language: Elixir
- Size: 706 KB
- Stars: 29
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RunElixir - A Quickstart Guide to Elixir
This project intends to give a 30min quickstart to the [Elixir](elixir-lang.org) programming language.
You can find the latest version at [RunElixir.com](https://runelixir.com)
## Contribute
You're more than welcome to propose new chapters for the guide or to extend/correct/shorten existing ones. Just clone the repo and create a pull request.
## Setup locally
First, run `mix deps.get` to get the dependencies.
I wrote a little file-watcher to make it easy to see your latest changes. Just run it with:
```bash
mix run watch.exs
```It will re-run `mix docs` every time you change a file in `./guides` or the `mix.exs` file, where we configure [ExDoc](https://hexdocs.pm/ex_doc/readme.html).
The script will print out a link to the docs which you can open in your browser to see your changes.