Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gibbs/godanuk
https://github.com/gibbs/godanuk
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gibbs/godanuk
- Owner: gibbs
- Created: 2022-02-24T22:01:42.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-19T19:29:53.000Z (over 2 years ago)
- Last Synced: 2024-10-19T22:26:57.286Z (3 months ago)
- Language: Go
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Build
```bash
source .env
docker build -t ${DOCKER_BUILD_NAME}:${DOCKER_BUILD_TAG} -t ${DOCKER_BUILD_NAME}:latest .
```## Run
```bash
source .env
docker run -d -p 8084:8084 --name=godanuk --net=appdangibbsuk_sail ${DOCKER_BUILD_NAME}:${DOCKER_BUILD_TAG}
```## Request example
```bash
curl -s -X POST http://localhost:8084/tools/pwgen \
-H 'Content-Type: application/json' \
-d '{"num-passwords":1, "length": 32}' | jq
```