24 lines
451 B
Markdown
24 lines
451 B
Markdown
# A simple Elm app
|
|
|
|
Basic Elm code lives in `src/Main.elm` and relies on the [elm/html][html] library.
|
|
|
|
## Build Instructions
|
|
|
|
Run the following command from the root of this project:
|
|
|
|
```bash
|
|
elm make src/Main.elm --output index.html
|
|
```
|
|
|
|
Open `index.html` in your browser.
|
|
|
|
## Start a development server
|
|
|
|
Run the following command from the root of this project:
|
|
|
|
```bash
|
|
elm reactor
|
|
```
|
|
|
|
Visit `http://localhost:8000` to see your project dashboard.
|