*** Work in progress ***
Not ready to use yet...
https://s3.us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.tar.gz
java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -sharedDb
./gradlew test
./gradlew bootRun
curl http://localhost:8080/products
curl --header "Content-Type: application/json" -d "{\"msrp\":\"\$15.00\", \"cost\":\"\$5.00\"}" http://localhost:8080/products
curl http://localhost:8080/products/<product-id>
curl -X "DELETE" http://localhost:8080/product/<product-id>