diff --git a/test_app.sh b/test_app.sh new file mode 100644 index 0000000..8aa4082 --- /dev/null +++ b/test_app.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +if [ "$#" -ne 1 ]; then + echo "Usage: ./test_app.sh " + exit 1 +fi + +IMAGE_PATH="$1" + +curl -X POST \ + -H "Content-Type: multipart/form-data" \ + -F "image=@${IMAGE_PATH}" \ + -F "text=Sample Text" \ + -F "blocks=Block 1" \ + -F "blocks=Block 2" \ + http://localhost:5000/api