uipath-cli
latest
false
UiPath-CLI-Benutzerhandbuch
- Überblick
- Erste Schritte
- Konzepte
- Verwenden der UiPath CLI
- Anleitungen
- CI/CD-Rezepte
- Befehlsreferenz
- Überblick
- Exitcodes
- Globale Optionen
- UIP-codierter Agent
- uip coder
- uip context-grounding
- UIP-Dokumentation
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Add-Test-Data-Entität
- Add-Test-Data-Queue
- Add-Test-Data-Variation
- Analysieren
- Erstellen
- Ein Projekt erstellen
- Diff
- Suchaktivitäten
- Get-Analyse-Regeln
- get-standard-aktivität-xaml
- Fehler abrufen
- Manuelle-Testfälle erhalten
- Manuelle-Testschritte erhalten
- get-library-object-repository
- get-object-repository
- Get-Versionen
- Beispiel für einen Workflow abrufen
- Anwendung anzeigen
- Anzeigeelement
- Inspektionspaket
- install-data-fabric-entities
- Pakete installieren oder aktualisieren
- list-data-fabric-entities
- list-instances
- Beispiele für Listenworkflows
- Packen
- Veröffentlichen
- remote
- restore
- run, debug & execution
- Ausführungsdatei installieren
- Suchvorlagen
- Studio starten
- Ausführung anhalten
- tm
- UIA
- uip tasks
- UIP-Ablaufverfolgungen
- uip traces feedback
- Migration
- Referenz und Support
Wichtig :
Dieser Inhalt wurde maschinell übersetzt.
Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.
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.
Zusammenfassung
uip codedapp init <path> [options]
uip codedapp init <path> [options]
<path>— target directory for the starter coded app. Required.
Optionen
| Markieren | Beschreibung |
|---|---|
--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. |
Beispiele
# 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
Datenform (--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.
Zugehörig
- uip codedapp pack — package the built app once it's ready.
- uip codedapp push — push the initialized project's source to Studio Web.