Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/exenon/elm-presentation

Short intro to the Elm language and architecture
https://github.com/exenon/elm-presentation

elm presentation reveal-js

Last synced: 13 days ago
JSON representation

Short intro to the Elm language and architecture

Awesome Lists containing this project

README

        

# Elm Workshop presentation

To generate an empty Elm project :
```
$ docker run -it -v $(pwd):/code/ -w /code/ -u "$UID:$GID" codesimple/elm:0.19 init
```

To compile a project to a single HTML output :
```
$ docker run -v $(pwd):/code/ -w /code/ -u "$UID:$GID" codesimple/elm:0.19 make src/main.elm --output=index.html --debug
```

To execute the output, start a server on port 8000 :
```
$ python3 -m http.server
```

##### Note

Using the Docker, I had several problems regarding corrupted elm-stuff/ folders. Simply `rm -rf` the folder and recompile.