KamuiDash KamuiDash Docs
EN JA

Project Management

A project is a container for grouping applications and databases.

Project Concept

Project
├── Applications (multiple)
└── Databases (multiple)

Creating a Project

  1. Click "Projects" in the dashboard sidebar
  2. Click the "New Project" button
  3. Enter the following information:
Field Description
Project Name A recognizable name for your project
Description Optional. Describe the project's purpose
Plan Free / Cloud
Region Choose Tokyo
  1. Click "Create"

Plan

Two plans are available: Free and Cloud. For details on specs and pricing, see Spec & Pricing.

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

  1. Click on a project from the project list
  2. You can view:
  3. Project name and description
  4. Plan and region
  5. Application list
  6. Database list

Editing a Project

  1. Click the "Settings" tab in the project detail screen
  2. Editable fields:
  3. Project name
  4. Description
  5. Click "Save"

Note: Plan and region cannot be changed.

Deleting a Project

  1. Click the "Settings" tab in the project detail screen
  2. Click "Delete Project" at the bottom of the page
  3. Enter the project name in the confirmation dialog
  4. 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

Next Steps