Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Logs
logs
*.log
npm-debug.log*

# Build outputs
node_modules
dist
dist-ssr
.uipath

# OS / editor
.DS_Store
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/src/assets/favicon.png" />
<title>UiPath Action Center Form</title>
</head>
<body>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"clientId": "<your-oauth-external-app-client-id>",
"scope": "DataFabric.Schema.Read DataFabric.Data.Read DataFabric.Data.Write",
"orgName": "<your-org-name>",
"tenantName": "<your-tenant-name>",
"baseUrl": "https://api.uipath.com",
"redirectUri": "http://localhost:5173"
}
21 changes: 21 additions & 0 deletions samples/coded-action-apps/action-app-with-document/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Logs
logs
*.log
npm-debug.log*

# Build outputs
node_modules
dist
dist-ssr
.uipath

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The six new .gitignore files in this PR (action-app-with-document, action-app-with-image, action-app-with-file-attachment-document, action-app-with-data-fabric-entity, action-app-with-storage-bucket-document, and conversational-agent-app) are all missing uipath.json as an ignored pattern.

data-fabric-app-angular/.gitignore already has this entry — these should match. Without the entry:

  • Developers who copy uipath.json.exampleuipath.json and fill in real credentials will see the file as untracked (not ignored), making an accidental git add . easy.
  • For the three action apps that still have uipath.json tracked (see the open thread on action-app-with-data-fabric-entity/.gitignore), running git rm --cached would untrack them but they'd immediately show back as untracked — not ignored — because there's no .gitignore entry.

Same one-liner fix across all six files:

Suggested change
.uipath
.uipath
uipath.json


# OS / editor
.DS_Store
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/src/assets/favicon.png" />
<title>UiPath Action Center Form</title>
</head>
<body>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"clientId": "<your-oauth-external-app-client-id>",
"scope": "OR.Execution OR.Tasks OR.Folders",
"orgName": "<your-org-name>",
"tenantName": "<your-tenant-name>",
"baseUrl": "https://api.uipath.com",
"redirectUri": "http://localhost:5173"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Logs
logs
*.log
npm-debug.log*

# Build outputs
node_modules
dist
dist-ssr
.uipath

# OS / editor
.DS_Store
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/src/assets/favicon.png" />
<title>UiPath Action Center Form</title>
</head>
<body>
Expand Down
Loading
Loading