uipath-cli
latest
false
Guide de l'utilisateur de UiPath CLI
- Vue d'ensemble (Overview)
- Démarrer
- Concepts
- Utilisation de la UiPath CLI
- Guides pratiques
- Revenus CI/CD
- Référence de commande
- Vue d'ensemble (Overview)
- Codes de sortie
- Options globales
- agent codé uip
- uip coder
- uip context-grounding
- UiPath Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Tâches (Jobs)
- Dossiers
- Processus
- Paquets
- Machines
- Utilisateurs
- Rôles
- Licences
- Flux
- Pièces jointes (Attachments)
- Sessions
- Calendriers
- magasins d'informations d’identification
- journaux-audit
- paramètres
- Actifs
- Compartiments
- Compartiment-fichiers
- Bibliothèques
- Files d'attente (Queues)
- éléments de la file d'attente
- Déclencheurs (Triggers)
- Webhooks
- add-test-data-entity
- ajouter une file d'attente de données de test
- add-test-data-variation
- Analyser
- Construire
- créer-projet
- Différence
- recherche-activités
- Obtenir les règles de l'analyse
- récupérer-activité-xaml par défaut
- Récupérer les erreurs
- obtenir des cas de test manuels
- Obtenir les étapes de test manuelles
- get-library-object-repository
- get-object-repository
- Obtenir les versions
- exemple de workflow
- indiquer l'application
- indiquer l'élément
- inspecter-package
- install-data-fabric-entities
- installer-ou-Update-packages
- list-data-fabric-entités
- list-instances
- listes-exemples-workflow
- Créer un package
- Publier
- remote
- restore
- run, debug & execution
- Exécuter le fichier
- modèles-recherche
- Démarrer-Studio
- arrêter l'exécution
- tm
- UIA
- uip tasks
- Traçages UIP
- uip traces feedback
- Migration
- Référence et assistance
Important :
Ce contenu a été traduit à l'aide d'une traduction automatique.
La localisation du contenu nouvellement publié peut prendre 1 à 2 semaines avant d’être disponible.
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.
Synthèse
uip codedapp init <path> [options]
uip codedapp init <path> [options]
<path>— target directory for the starter coded app. Required.
Options
| Drapeau | Description |
|---|---|
--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. |
Exemples
# 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
Format des données (--sortie 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.
Associé
- uip codedapp pack — package the built app once it's ready.
- uip codedapp push — push the initialized project's source to Studio Web.