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

https://github.com/schultyy/k8s-secret-management


https://github.com/schultyy/k8s-secret-management

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Secrets

## Local

```bash
docker run --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword -v ./seed.sql:/docker-entrypoint-initdb.d/bootstrap.sql -p 5432:5432 -d postgres
PGUSER=postgres PGPASSWORD=mysecretpassword node index.js
```