https://github.com/leshow/elm-password-frontend
Simple elm frontend for my Rust password gen (https://github.com/leshow/password-server)
https://github.com/leshow/elm-password-frontend
Last synced: 21 days ago
JSON representation
Simple elm frontend for my Rust password gen (https://github.com/leshow/password-server)
- Host: GitHub
- URL: https://github.com/leshow/elm-password-frontend
- Owner: leshow
- Created: 2016-10-27T02:58:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-28T02:09:54.000Z (over 9 years ago)
- Last Synced: 2025-01-06T05:28:40.227Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 118 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# elm-password-frontend
Contains:
* Dev server with live reloading, HMR
* Support for CSS/SCSS (with Autoprefixer), image assets
* Bootstrap 3.3+ (Sass version)
* Bundling and minification for deployment
### Install:
```
yarn install
elm package install -y
```
### Serve locally:
```
yarn 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:
```
yarn run build
```
* Files are saved into the `/dist` folder
* To check it, open `dist/index.html`