Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webbestmaster/forgot-password
Forgot Password via Web Page
https://github.com/webbestmaster/forgot-password
Last synced: 28 days ago
JSON representation
Forgot Password via Web Page
- Host: GitHub
- URL: https://github.com/webbestmaster/forgot-password
- Owner: webbestmaster
- License: mit
- Created: 2019-11-15T08:52:19.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-19T12:28:16.000Z (about 5 years ago)
- Last Synced: 2024-11-14T22:34:42.688Z (3 months ago)
- Language: JavaScript
- Size: 132 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
# forgot-password
Forgot Password via Web Page## Installation:
### Install libpng-dev for pngquant (need for webpack):
```bash
$ [sudo] apt-get install --no-install-recommends gcc make libpng-dev
```### Install other npm modules:
```bash
$ npm i
```### Build app:
```bash
$ npm run build
```### Other
### weinre - WEb INspector REmote.
Install
```bash
$ [sudo] npm i [-g] weinre
```To run
```bash
$ weinre --boundHost 172.21.1.215 --httpPort 8080
```To bound ip
> --boundHost 172.21.1.215To bound port
> --httpPort 8080Add in your index.html
```HTML```
### Fix IDEA file watching
1. Add the following line to either /etc/sysctl.conf file or a new *.conf file (e.g. idea.conf) under /etc/sysctl.d/ directory:
```
fs.inotify.max_user_watches = 524288
```2. Then run this command to apply the change:
```bash
$ sudo sysctl -p --system
```And don't forget to restart your IDE.
Note: the watches limit is per-account setting. If there are other programs running under the same account which also uses Inotify the limit should be raised high enough to suit needs of all of them.
### NPM packages
You can use npm-check-updates
```bash
$ [sudo] npm i -g npm-check-updates
$ ncu [-u]
```## Setup environment for Ubuntu
At first install nodejs (if needed).```bash
$ sudo apt-get clean
$ sudo apt-get update
$ sudo apt-get install nasm
$ sudo apt-get install build-essential
$ sudo apt-get install gcc
$ sudo apt-get install --no-install-recommends -y gcc make libpng-dev
```## Favicon generator for PWA
https://www.favicon-generator.org## Static server
### Install
```bash
$ sudo npm i static-server
```### Run
```bash
$ cd dist
$ static-server --port 8888 --not-found ./index.html
```