Project Management
A project is a container for grouping applications and databases.
Project Concept
Project
├── Applications (multiple)
└── Databases (multiple)
Creating a Project
- Click "Projects" in the dashboard sidebar
- Click the "New Project" button
- Enter the following information:
| Field | Description |
|---|---|
| Project Name | A recognizable name for your project |
| Description | Optional. Describe the project's purpose |
| Plan | Choose Free or Pro |
| Region | Choose Tokyo |
- Click "Create"
Plans
| Plan | Features |
|---|---|
| Free | Free to use. Resource limits apply. App spec is fixed to nano |
| Pro | Pay-as-you-go. Access to larger resources |
See the pricing page for detailed information.
Regions
| Region | Location |
|---|---|
| Tokyo | Japan (Tokyo) |
Currently, only the Tokyo region is available.
Note: You cannot change the region after creating a project.
Viewing Project Details
- Click on a project from the project list
- You can view:
- Project name and description
- Plan and region
- Application list
- Database list
Editing a Project
- Click the "Settings" tab in the project detail screen
- Editable fields:
- Project name
- Description
- Click "Save"
Note: Plan and region cannot be changed.
Deleting a Project
- Click the "Settings" tab in the project detail screen
- Click "Delete Project" at the bottom of the page
- Enter the project name in the confirmation dialog
- Click "Delete"
⚠️ Warning: Deleting a project will delete all applications and databases within it. This action cannot be undone.
CLI Commands
# List all projects
kamui projects list
# Get project details
kamui projects get <project-id>
# Create a project (interactive)
kamui projects create
# Delete a project
kamui projects delete <project-name-or-id>
# Delete without confirmation
kamui projects delete <project-name-or-id> --yes