Skip to content

Commit

Permalink
Merge pull request #408 from amplication/task/add-backstage-catalog-e…
Browse files Browse the repository at this point in the history
…ntity-plugin

feat: add backstage catalog entity plugin
  • Loading branch information
mulygottlieb authored Oct 7, 2024
2 parents 081d50d + defe4aa commit a94dac7
Show file tree
Hide file tree
Showing 31 changed files with 1,455 additions and 1 deletion.
108 changes: 107 additions & 1 deletion package-lock.json

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

22 changes: 22 additions & 0 deletions plugins/backstage-catalog-entity/.amplicationrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"settings": {
"labels": {
"vendor": "amplication"
},
"annotations": {
"github.com/project-slug": "backstage/backstage",
"github.com/team-slug": "backstage/maintainers"
},
"tags": [
"Node.js"
],
"spec": {
"type": "service",
"lifecycle": "production",
"owner": "development"
}
},
"systemSettings": {
"requireAuthenticationEntity": "false"
}
}
63 changes: 63 additions & 0 deletions plugins/backstage-catalog-entity/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
dist
**/dist/
tmp
/out-tsc

# dependencies
node_modules
**/node_modules/

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

# Local History for Visual Studio Code
.history/

# Common credential files
**/credentials.json
**/client_secrets.json
**/client_secret.json
*.dat
*.httr-oauth*

# Terraform development
**/.terraform.lock.hcl
**/.terraform
**/terraform.tfstate
**/terraform.tfstate.backup

# misc
/.sass-cache
/connect.lock
**/coverage/
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings


# System Files
.DS_Store
Thumbs.db

.nx/cache

.env.local
2 changes: 2 additions & 0 deletions plugins/backstage-catalog-entity/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.prettierignore
.gitignore
1 change: 1 addition & 0 deletions plugins/backstage-catalog-entity/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
Loading

0 comments on commit a94dac7

Please sign in to comment.