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

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

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)

[![CircleCI](https://circleci.com/gh/ThibautGery/elm-tuto.svg?style=svg)](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
```