Run a fully functional sandbox on your machine in 60 seconds. No account needed. No data leaves your computer. Everything resets when you stop the container.
docker run --rm -p 3000:3000 reflect-memory:sandboxRequires Docker 20.10+. The container runs on port 3000 and stops cleanly with Ctrl+C. All data is ephemeral.
1. Check that it's running:
curl http://localhost:3000/health2. Write your first memory:
curl -X POST http://localhost:3000/memories \
-H "Authorization: Bearer sandbox-demo-key" \
-H "Content-Type: application/json" \
-d '{"title":"Hello from sandbox","content":"Testing private deploy.","tags":["test"]}'3. Read it back:
curl -X POST http://localhost:3000/memories/list \
-H "Authorization: Bearer sandbox-demo-key" \
-H "Content-Type: application/json" \
-d '{"filter":{"by":"all"},"limit":10}'4. Confirm network isolation:
curl -X POST http://localhost:3000/query \
-H "Authorization: Bearer sandbox-demo-key" \
-H "Content-Type: application/json" \
-d '{"query":"test","memory_filter":{"by":"all"}}'
# Returns 503 - no data leaves the containerThe sandbox runs with --rm, so the container and all data are automatically deleted when you stop it. Nothing persists. Nothing to uninstall.
The sandbox uses the same codebase as production. When you're ready, we'll design a scoped pilot together, tied to your success criteria.