https://github.com/jovannypcg/elmseed
Elm starter project using webpack 2.x. Based on https://github.com/elm-community/elm-webpack-starter
https://github.com/jovannypcg/elmseed
Last synced: 2 months ago
JSON representation
Elm starter project using webpack 2.x. Based on https://github.com/elm-community/elm-webpack-starter
- Host: GitHub
- URL: https://github.com/jovannypcg/elmseed
- Owner: jovannypcg
- Created: 2017-11-03T17:20:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-05T04:13:07.000Z (over 7 years ago)
- Last Synced: 2025-02-13T06:30:19.076Z (4 months ago)
- Language: JavaScript
- Size: 154 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Randomizer
Simple frontend application that demonstrates how TEA works.
It gets random jokes from the Chuck Norris database.
### Install:
Clone this repo:
```
git clone https://github.com/jovannypcg/elmseed.git randomizer
cd randomizer
```Install all dependencies using the handy `reinstall` script:
```
npm run reinstall
```
*This does a clean (re)install of all npm and elm packages, plus a global elm install.*### Serve locally:
```
npm start
```
* Access app at `http://localhost:8080/`
* Get coding! The entry point file is `src/elm/Main.elm`
* Browser will refresh automatically on any file changes..### Build & bundle for prod:
```
npm run build
```* Files are saved into the `/dist` folder
* To check it, open `dist/index.html`