This is a simple JSON storage service with the following endpoints:
PUT /store/{path} - Store JSON dataGET /store/{path} - Retrieve JSON dataMaximum total storage size: 50MB
# Store data
curl -X PUT http://localhost:8000/store/my/data -H "Content-Type: application/json" -d '{"key": "value"}'
# Retrieve data
curl http://localhost:8000/store/my/data