https://github.com/thibautgery/elm-tuto
Code product following a elm tutorial
https://github.com/thibautgery/elm-tuto
elm-language tutorial
Last synced: about 2 months ago
JSON representation
Code product following a elm tutorial
- Host: GitHub
- URL: https://github.com/thibautgery/elm-tuto
- Owner: ThibautGery
- Created: 2017-02-03T13:36:59.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-15T13:18:15.000Z (about 9 years ago)
- Last Synced: 2025-03-15T04:12:27.911Z (about 1 year ago)
- Topics: elm-language, tutorial
- Language: Elm
- Homepage: https://www.elm-tutorial.org/en
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Role Game dashboard
This is a front-end application to track level of a role game player.
it is a learning project to learn the language Elm following [this tutorial](https://www.elm-tutorial.org)
[](https://circleci.com/gh/ThibautGery/elm-tuto)
I just wrote about this experience on my personal blog post [My First impression with elm](http://www.thibautgery.com/2017/02/13/elm-first-impressions/)
## Requirements
* [nodeJS](https://nodejs.org/en/)
## Commands
### Install the dependencies
```bash
npm install -g foreman # to install the process manager
npm install -g elm
npm install -g elm-test
npm install -g webpack
npm install #install NodeJs dependencies
```
### Run the app
```bash
npm run dev # run the front-end
npm run api # run the backend
```
### Build the application
```bash
npm build
```
### Run the tests
```bash
elm tests
```