Quick Start
Create your first secret
Create a Project
curl -X POST https://kms.lux.network/api/v3/workspaces \
-H 'Authorization: Bearer $TOKEN' \
-d '{"name": "my-project"}'Store a Secret
curl -X POST https://kms.lux.network/api/v3/secrets \
-H 'Authorization: Bearer $TOKEN' \
-d '{"key": "DATABASE_URL", "value": "postgres://...", "type": "shared"}'