Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/exenon/elm-presentation
- Owner: eXenon
- License: unlicense
- Created: 2019-02-14T06:51:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-10T13:38:46.000Z (over 5 years ago)
- Last Synced: 2024-11-06T21:46:58.624Z (2 months ago)
- Topics: elm, presentation, reveal-js
- Language: Elm
- Size: 1.7 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.