Projects
Organize your resources, manage team access, and configure environments with Tenzro Cloud projects.
Overview
Projects are the primary organizational unit in Tenzro Cloud. Each project contains its own:
- API keys and credentials
- Database instances (Vec, Kev, Data, Graph)
- File storage buckets
- AI agents and workflows
- MCP server deployments
- Usage quotas and billing
Creating a Project
- Navigate to the Tenzro Console
- Click New Project in the top navigation
- Enter a project name (lowercase, alphanumeric, hyphens allowed)
- Select your organization (if applicable)
- Choose a region for your resources
- Click Create Project
Project Settings
General Settings
| Setting | Description |
|---|---|
| Project Name | Display name for the project |
| Project ID | Unique identifier (cannot be changed) |
| Region | Primary region for resources |
| Environment | Development, Staging, or Production |
Resource Limits
Configure limits per project:
| Resource | Default Limit | Max (Pro) |
|---|---|---|
| Vector DBs | 5 | Unlimited |
| KV Stores | 10 | Unlimited |
| SQL Databases | 3 | Unlimited |
| AI Agents | 10 | Unlimited |
| MCP Servers | 5 | Unlimited |
| Storage | 10 GB | 10 TB |
Environment Variables
Define project-wide environment variables:
# Set via console or CLItenzro env set MY_SECRET=value --project my-project# Use in your applicationsconst secret = process.env.MY_SECRET;
Team Access
Invite team members and assign roles:
| Role | Permissions |
|---|---|
| Owner | Full access, billing, delete project |
| Admin | Manage resources, invite members |
| Developer | Create and modify resources |
| Viewer | Read-only access |
Using the Project ID
import { Tenzro } from 'tenzro';const tenzro = new Tenzro({apiKey: process.env.TENZRO_API_KEY,projectId: process.env.TENZRO_PROJECT_ID, // Optional if using project-scoped key});// All resources are scoped to this projectconst db = await tenzro.vec.create({name: 'embeddings',dimension: 1536,});
Deleting a Project
Warning: Deleting a project permanently removes all resources, data, and configurations. This action cannot be undone.
- Go to Project Settings
- Scroll to the Danger Zone
- Click Delete Project
- Type the project name to confirm
- Click Permanently Delete