https://github.com/c4nzin/nestjs-infisical-example
an official working example
https://github.com/c4nzin/nestjs-infisical-example
Last synced: 8 months ago
JSON representation
an official working example
- Host: GitHub
- URL: https://github.com/c4nzin/nestjs-infisical-example
- Owner: c4nzin
- Created: 2025-02-01T09:23:00.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-02-10T09:49:17.000Z (8 months ago)
- Last Synced: 2025-02-10T10:38:53.993Z (8 months ago)
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/nestjs-infisical-sdk
- Size: 240 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A working example of nestjs-infisical-sdk
# To use
* Fork this repository
* Run the cli command => pnpm run install
* Send CRUD requests with Postman etc. Or just use our swagger : ```bash http://localhost:3000/swagger``````bash
############################################################################################################### A FRIENDLY WARNING!
# Please do not use this example project for malicious purposes as it will affect the experience of other developers. Cheers :)
# Because i am sharing a test account's credentials to common use.
##############################################################################################################
```
## Get a secret
```bash
GET /secret/example-secret
```## Create a secret
```bash
POST /secret
Content-Type: application/json{
"secretName": "new-secret",
"secretValue": "new-secret-value"
}
```