Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deas/insomnia-inso-plugins
Enabling plugins in Inso (Isomnia CLI)
https://github.com/deas/insomnia-inso-plugins
Last synced: about 1 month ago
JSON representation
Enabling plugins in Inso (Isomnia CLI)
- Host: GitHub
- URL: https://github.com/deas/insomnia-inso-plugins
- Owner: deas
- Created: 2021-08-10T06:13:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-10T06:14:03.000Z (over 3 years ago)
- Last Synced: 2024-10-12T22:52:30.595Z (3 months ago)
- Language: Dockerfile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Enabling plugins in Inso (Isomnia CLI)
This hack is meant to address two issues we face in context of Continous Delivery as of `[email protected]`:
- [Support plugins by inso](https://github.com/Kong/insomnia/discussions/3653)
- [Strategy for avoding plain text passwords in environment?](https://github.com/Kong/insomnia/discussions/3871)Because UX, we use Docker.
## Build
The following command builds an image adding [insomnia-plugin-dotenv](https://www.npmjs.com/package/insomnia-plugin-dotenv). However, I'd expect other plugins to work as well.```shell
REPO=deas/insomnia-inso-dotenv
docker build -t ${REPO} .
```
## Usage
Assuming there is a `.insomnia` data directory including tests present in current working directory:
```shell
REPO=deas/insomnia-inso-dotenv
docker run -it -v`pwd`:/work --rm ${REPO} run test
```