forked from backstage/backstage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
42,561 additions
and
28,612 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# test directories | ||
__tests__ | ||
test | ||
tests | ||
powered-test | ||
|
||
# asset directories | ||
docs | ||
doc | ||
website | ||
images | ||
assets | ||
|
||
# examples | ||
example | ||
examples | ||
|
||
# code coverage directories | ||
coverage | ||
.nyc_output | ||
|
||
# build scripts | ||
Makefile | ||
Gulpfile.js | ||
Gruntfile.js | ||
|
||
# configs | ||
appveyor.yml | ||
circle.yml | ||
codeship-services.yml | ||
codeship-steps.yml | ||
wercker.yml | ||
.tern-project | ||
.gitattributes | ||
.editorconfig | ||
.*ignore | ||
.eslintrc | ||
.jshintrc | ||
.flowconfig | ||
.documentup.json | ||
.yarn-metadata.json | ||
.travis.yml | ||
|
||
# misc | ||
*.md | ||
|
||
!**/yaml/dist/**/doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.4.1.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,6 @@ backend: | |
# information on the format | ||
auth: | ||
# key: x1tXmm40nfxOQM+sVbypFfaa3wUVL3ku | ||
|
||
# dangerouslyDisableDefaultAuthPolicy: true | ||
baseUrl: http://localhost:7007 | ||
listen: | ||
|
@@ -40,15 +39,15 @@ backend: | |
allow: | ||
- host: ${GITLAB_HOST} | ||
|
||
integrations: | ||
integrations: | ||
gitlab: | ||
- host: ${GITLAB_HOST} | ||
token: ${GITLAB_TOKEN} | ||
apiBaseUrl: https://${GITLAB_HOST}/api/v4 | ||
baseUrl: https://${GITLAB_HOST} | ||
proxy: | ||
endpoints: | ||
"/prometheus/api": | ||
'/prometheus/api': | ||
# url to the api and path of your hosted prometheus instance | ||
target: ${PROMETHEUS_URL} | ||
changeOrigin: true | ||
|
@@ -70,6 +69,8 @@ techdocs: | |
auth: | ||
environment: development | ||
# see https://backstage.io/docs/auth/ to learn about auth providers | ||
session: | ||
secret: ${SESSION_SECRET} | ||
providers: | ||
gitlab: | ||
development: | ||
|
@@ -79,15 +80,24 @@ auth: | |
signIn: | ||
resolvers: | ||
- resolver: usernameMatchingUserEntityName | ||
|
||
oidc-auth-provider: | ||
development: | ||
metadataUrl: https://keycloak.idp.freeddns.org/realms/master/.well-known/openid-configuration | ||
clientId: ${OIDC_CLIENT_ID} | ||
clientSecret: ${OIDC_CLIENT_SECRET} | ||
prompt: auto | ||
signIn: | ||
resolvers: | ||
- resolver: emailLocalPartMatchingUserEntityName | ||
- resolver: emailMatchingUserEntityProfileEmail | ||
|
||
scaffolder: | ||
# see https://backstage.io/docs/features/software-templates/configuration for software template options | ||
defaultBranch: main | ||
defaultAuthor: | ||
name: hoangndst | ||
email: [email protected] | ||
defaultCommitMessage: "Initial commit" | ||
defaultCommitMessage: 'Initial commit' | ||
|
||
catalog: | ||
providers: | ||
|
@@ -153,7 +163,7 @@ s3: | |
timeout: { minutes: 1 } | ||
|
||
permission: | ||
enabled: true | ||
enabled: false | ||
rbac: | ||
pluginsWithPermission: | ||
- kubernetes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"version": "1.28.3" | ||
"version": "1.30.4" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,15 +31,15 @@ | |
] | ||
}, | ||
"devDependencies": { | ||
"@backstage/cli": "^0.26.10", | ||
"@backstage/cli": "^0.27.0", | ||
"@backstage/e2e-test-utils": "^0.1.1", | ||
"@playwright/test": "^1.32.3", | ||
"@spotify/prettier-config": "^12.0.0", | ||
"concurrently": "^8.0.0", | ||
"lerna": "^7.3.0", | ||
"node-gyp": "^10.0.0", | ||
"prettier": "^2.3.2", | ||
"typescript": "~5.4.0" | ||
"@playwright/test": "^1.47.1", | ||
"@spotify/prettier-config": "^15.0.0", | ||
"concurrently": "^9.0.1", | ||
"lerna": "^8.1.8", | ||
"node-gyp": "^10.2.0", | ||
"prettier": "^3.3.3", | ||
"typescript": "~5.6.2" | ||
}, | ||
"resolutions": { | ||
"@types/react": "^18", | ||
|
@@ -54,5 +54,6 @@ | |
"*.{json,md}": [ | ||
"prettier --write" | ||
] | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.