asc projects
Create, manage, and switch between projects.
asc projects list
List all projects in your account.
Usagebash
asc projects list# Output:# ID NAME APP STORE ID PLAY STORE PKG# proj_abc123 My Awesome App 123456789 com.example.app# proj_def456 Another App 987654321 com.example.other# * proj_ghi789 Current Project 555555555 com.example.current
asc projects create
Create a new project.
Usagebash
# Interactive creationasc projects create# With optionsasc projects create --name "My New App" --appstore-id 123456789# Full exampleasc projects create \--name "My New App" \--appstore-id 123456789 \--playstore-pkg com.example.newapp
Options
| Option | Description |
|---|---|
--name, -n | Project name (required) |
--appstore-id | App Store app ID |
--playstore-pkg | Play Store package name |
asc projects use
Set the active project for subsequent commands.
Usagebash
# By project IDasc projects use proj_abc123# By project nameasc projects use "My Awesome App"# Verify current projectasc projects current
asc projects info
Show detailed information about a project.
Usagebash
asc projects info proj_abc123# Output:# Project: My Awesome App# ID: proj_abc123## App Store:# App ID: 123456789# Status: Connected# Locales: 12## Play Store:# Package: com.example.app# Status: Connected# Locales: 12## Last Sync: 2024-01-20 14:30:00
asc projects delete
Delete a project. This removes all metadata and settings.
Usagebash
# With confirmation promptasc projects delete proj_abc123# Skip confirmation (use with caution)asc projects delete proj_abc123 --force