Create and manage workspaces for team collaboration
Fusioncat is currently in its alpha stage. The main API server is located at:
https://api.staging.fusioncatalyst.io/Please note that breaking changes and bugs are to be expected, as the product is still under active development.
# Create a workspacepaw workspaces new --name "Engineering Team" --description "Workspace for the engineering team"# Create a minimal workspacepaw workspaces new --name "QA Team"
After creating a workspace, you can create projects that belong to it:
Copy
# Create a workspacepaw workspaces new --name "API Team"# List workspaces to get the IDpaw workspaces list# Create a project in the workspacepaw projects new --name "Shared APIs" --belongs-to workspace --workspace-id "workspace-uuid"
# 1. Create a workspace for your teampaw workspaces new --name "Backend Team" --description "Backend engineering workspace"# 2. List workspaces to get the IDpaw workspaces list# 3. Create a shared projectpaw projects new --name "Microservices APIs" --belongs-to workspace --workspace-id "workspace-uuid"# 4. Team members can now collaborate on the projectpaw apps new --project-id "project-uuid" --name "User Service" --description "User management service"