QUICKSTART PROTOCOL
Deploying your first cluster.
Nexus clusters can be deployed to local machines or cloud nodes in seconds. The single binary handles queries, local caches, and replication protocols out-of-the-box.
1. Download the CLI
Install the Nexus system agent shell utility via npm curl node script:
curl -fsSL https://nexus.db/install.sh | sh
2. Initialize a cluster node
Create a cluster database in a local target folder:
nexus init my-database-node --region sjc
3. Query Node Endpoint
Fire transactions directly to the local port using the REST vector API:
curl -X POST http://localhost:8080/v1/query \
-H "Authorization: Bearer test_token" \
-d '{"sql": "SELECT 1"}'