uipath-cli
latest
false
UiPath CLI ユーザー ガイド
- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- add-test-data-entity
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-library-object-repository
- get-object-repository
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- パッケージ化
- パブリッシュ
- remote
- 元に戻す
- run, debug & execution
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- tm
- UIA
- uip tasks
- uip traces
- uip traces feedback
- 移行
- 参照とサポート
重要 :
このコンテンツは機械翻訳によって処理されています。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
Syntax and options for `uip codedapp init`, which creates a local coded app starter.
uip codedapp init scaffolds a local coded-app starter into <path>. It's a local, unauthenticated operation — no login or auth-override flags apply. By default, when run inside an existing solution, the new project is auto-registered in the surrounding solution's .uipx; pass --skip-solution-registration to opt out.
概要
uip codedapp init <path> [options]
uip codedapp init <path> [options]
<path>— target directory for the starter coded app. Required.
オプション
| フラグ | 説明 |
|---|---|
--force | Overwrite starter files in a non-empty directory. |
--template <template> | Starter template: form, dashboard, or inline-automation. Default: form. |
--type <type> | Coded app subtype. Omit for a regular coded app, or pass Action to scaffold a coded Action app. |
--skip-solution-registration | Do not auto-register this project in the surrounding solution. |
例
# Create a form starter coded app
uip codedapp init ./expense-app --template form
# Overwrite starter files in a non-empty directory
uip codedapp init ./expense-app --force
# Skip auto-registering the project in a parent solution
uip codedapp init ./expense-app --skip-solution-registration
# Scaffold a coded Action app
uip codedapp init ./approve-invoice --type Action
# Create a form starter coded app
uip codedapp init ./expense-app --template form
# Overwrite starter files in a non-empty directory
uip codedapp init ./expense-app --force
# Skip auto-registering the project in a parent solution
uip codedapp init ./expense-app --skip-solution-registration
# Scaffold a coded Action app
uip codedapp init ./approve-invoice --type Action
データシェイプ(--output json)
{
"Code": "InitCompleted",
"Data": {
"path": "./expense-app",
"template": "form",
"SolutionRegistration": {
"Status": "NotInSolution",
"Message": "Project created in standalone mode; no parent .uipx solution found."
}
}
}
{
"Code": "InitCompleted",
"Data": {
"path": "./expense-app",
"template": "form",
"SolutionRegistration": {
"Status": "NotInSolution",
"Message": "Project created in standalone mode; no parent .uipx solution found."
}
}
}
SolutionRegistration.Status is NotInSolution when no parent solution is found, or OptedOut when --skip-solution-registration was passed — omitted entirely when the project registers successfully into a discovered parent solution.
関連
- uip codedapp pack — package the built app once it's ready.
- uip codedapp push — push the initialized project's source to Studio Web.