cookiecutter-elm/{{cookiecutter.app_name}}/README.md

24 lines
451 B
Markdown
Raw Permalink Normal View History

2023-07-14 07:47:05 +00:00
# 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.