Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pbrisbin/passphrase.me
curl-able passphrase generator
https://github.com/pbrisbin/passphrase.me
Last synced: 2 months ago
JSON representation
curl-able passphrase generator
- Host: GitHub
- URL: https://github.com/pbrisbin/passphrase.me
- Owner: pbrisbin
- License: mit
- Created: 2015-04-16T02:00:15.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-09-08T13:43:38.000Z (over 2 years ago)
- Last Synced: 2024-10-09T09:44:11.299Z (3 months ago)
- Language: Haskell
- Homepage: https://passphrase-me.onrender.com/about
- Size: 112 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# passphrase.me
`curl`-able passphrases generated using entropy from [random.org][].
[Details][].
[random.org]: https://www.random.org
[details]: https://passphrase-me.onrender.com/about## Development
```console
stack setup
stack build --dependencies-only
stack build --fast --pedantic --test --file-watch
```## Local instance (native)
```console
RANDOM_API_KEY=xxx stack run passphrase-me:passphrase-me
```## Local instance (docker)
```console
docker build --tag passphrase-me .
docker run --rm \
-e RANDOM_API_KEY=xxx \
-p 3000:3000
passphrase-me
```## Release
Push to `master`, Render will build and deploy.