Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.