28 lines
421 B
Markdown
28 lines
421 B
Markdown
|
# About
|
||
|
Example demonstrating how one might architect a single page application
|
||
|
Elm app.
|
||
|
|
||
|
# Dependencies MacOS
|
||
|
```bash
|
||
|
brew install node elm
|
||
|
npm install -g uglify-js@2.4.11
|
||
|
```
|
||
|
|
||
|
# Building
|
||
|
```
|
||
|
make serve
|
||
|
```
|
||
|
|
||
|
Now open `http://localhost:8000` in your browser.
|
||
|
|
||
|
# Viewing
|
||
|
|
||
|
Open index.html in your browser.
|
||
|
|
||
|
# TODO
|
||
|
|
||
|
- [x] Add Makefile
|
||
|
- [ ] Refactor into router page
|
||
|
- [ ] Handle back-navigation
|
||
|
- [ ] Add `default.nix`
|