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

  1. Navigate to the Tenzro Console
  2. Click New Project in the top navigation
  3. Enter a project name (lowercase, alphanumeric, hyphens allowed)
  4. Select your organization (if applicable)
  5. Choose a region for your resources
  6. Click Create Project

Project Settings

General Settings

SettingDescription
Project NameDisplay name for the project
Project IDUnique identifier (cannot be changed)
RegionPrimary region for resources
EnvironmentDevelopment, Staging, or Production

Resource Limits

Configure limits per project:

ResourceDefault LimitMax (Pro)
Vector DBs5Unlimited
KV Stores10Unlimited
SQL Databases3Unlimited
AI Agents10Unlimited
MCP Servers5Unlimited
Storage10 GB10 TB

Environment Variables

Define project-wide environment variables:

# Set via console or CLI
tenzro env set MY_SECRET=value --project my-project
# Use in your applications
const secret = process.env.MY_SECRET;

Team Access

Invite team members and assign roles:

RolePermissions
OwnerFull access, billing, delete project
AdminManage resources, invite members
DeveloperCreate and modify resources
ViewerRead-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 project
const 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.

  1. Go to Project Settings
  2. Scroll to the Danger Zone
  3. Click Delete Project
  4. Type the project name to confirm
  5. Click Permanently Delete