Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add backstage catalog entity plugin #408

Merged
merged 9 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from 8 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
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
Loading