Simple JSON Storage

This is a simple JSON storage service with the following endpoints:

Maximum total storage size: 50MB

Example Usage:

# 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