Project Settings
Configure your project details, manage subscription plans, set up environment variables, and control the project lifecycle.
Project Information
The top section of settings lets you update your project's basic information:
| Field | Description |
|---|---|
| Project name | Display name used across the dashboard, sidebar, and billing |
| Description | Brief summary shown in the projects list and project header |
Changes are persisted when you click Save. The project name is visible to all team members with access to the project.
Subscription Plans
Each DYPAI project runs on one of three tiers:
| Plan | Price | Storage | Rate limit | Best for |
|---|---|---|---|---|
| Free | $0/mo | 500 MB | 100 req/min | Prototyping and testing |
| Starter | $10/mo | 5 GB | 500 req/min | Small production apps |
| Pro | $25/mo | 25 GB | 1,000 req/min | Production workloads at scale |
You can upgrade or downgrade at any time. Changes take effect immediately. Billing is prorated to the day of the change.
Plan Feature Comparison
| Feature | Free | Starter | Pro |
|---|---|---|---|
| Storage | 500 MB | 5 GB | 25 GB |
| Rate limit | 100/min | 500/min | 1,000/min |
| Max file upload | 50 MB | 250 MB | 5 GB |
| Database backups | Manual only | Daily auto | Hourly auto |
| Custom domains | β | 1 | Unlimited |
| Support | Community | Priority |
Environment Variables
The Environment Configuration section provides a ready-to-use .env template for integrating DYPAI with your frontend application. Values are pre-filled with your project's actual IDs.
Required Variables
# Core DYPAI connection
VITE_DYPAI_API_URL=https://api.dypai.ai
VITE_DYPAI_APP_ID=your-project-id
VITE_DYPAI_API_VERSION=v0Optional Variables
# Routing context
VITE_CURRENT_SLUG=/your-route
VITE_ORGANIZATION_ID=your-org-id
VITE_ROLE_USER_WEIGHT=50
# Development credentials (DO NOT use in production)
VITE_DYPAI_DEV_USERNAME=dev@example.com
VITE_DYPAI_DEV_PASSWORD=your-dev-passwordSecurity
.env to your .gitignore file.Danger Zone
At the bottom of the settings page is the Danger Zone, which contains irreversible actions:
- Delete Project β Permanently removes the project and all associated resources
Deleting a project removes:
- All database tables and data
- All storage buckets and files
- All API endpoints and flows
- All credentials and environment configurations
- All build and version history