From 33f545367143d89d42670509ac0d94393aa69d68 Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Tue, 8 Dec 2020 00:26:29 -0500 Subject: [PATCH] move curl output to temp tagged file and exclude them from the project --- .gitignore | 1 + routes/scale/curl.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c2df44d..0c85bc7 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ old_* node_modules/ .env *.pem +*temp* diff --git a/routes/scale/curl.sh b/routes/scale/curl.sh index ba05e34..18a3cb6 100755 --- a/routes/scale/curl.sh +++ b/routes/scale/curl.sh @@ -1 +1 @@ -curl -H "Content-Type: application/json" -X GET -d@req.json https://localhost:8082/scale --insecure > scale_final.sql +curl -H "Content-Type: application/json" -X GET -d@req.json https://localhost:8082/scale --insecure > scale_temp.sql