An open API service indexing awesome lists of open source software.

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)

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`