Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 849 Bytes

README.md

File metadata and controls

38 lines (28 loc) · 849 Bytes

collection-scanner

[WIP] Postman collection scanner for busyman

Install

git clone https://gitlab.com/vay3t/collection-scanner.git
cd collection-scanner/src
npm install .

Build docker

cd collection-scanner/
bash docker-build.sh

Run

cd collection-scanner/src
node cli.js -c ../collections/project.postman_collection.json -e ../environments/project.postman_environment.json -x http://127.0.0.1:8080 -s no-auth

Run with Docker

cd collection-scanner/
docker run -v $(pwd)/input:/app/src/input collection-scanner -c /app/src/input/project.postman_collection.json -s no-auth

Run development with Docker

cd collection-scanner/
bash docker-build.sh && docker run -v $(pwd)/input:/app/src/input collection-scanner -c /app/src/input/project.postman_collection.json -s no-auth