-
Notifications
You must be signed in to change notification settings - Fork 7
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
1 parent
93480f5
commit e58c353
Showing
2 changed files
with
96 additions
and
36 deletions.
There are no files selected for viewing
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,55 @@ | ||
app: | ||
title: Backstage Example App | ||
baseUrl: http://localhost:3000 | ||
#datadogRum: | ||
# clientToken: '123456789' | ||
# applicationId: qwerty | ||
# site: # datadoghq.eu default = datadoghq.com | ||
# env: # optional | ||
support: | ||
url: https://github.com/backstage/backstage/issues # Used by common ErrorPage | ||
items: # Used by common SupportButton component | ||
- title: Issues | ||
icon: github | ||
links: | ||
- url: https://github.com/backstage/backstage/issues | ||
title: GitHub Issues | ||
- title: Discord Chatroom | ||
icon: chat | ||
links: | ||
- url: https://discord.gg/MUpMjP2 | ||
title: '#backstage' | ||
|
||
backend: | ||
# Used for enabling authentication, secret is shared by all backend plugins | ||
# See https://backstage.io/docs/tutorials/backend-to-backend-auth for | ||
# information on the format | ||
# auth: | ||
# keys: | ||
# - secret: ${BACKEND_SECRET} | ||
baseUrl: http://localhost:7007 | ||
listen: | ||
port: 7007 | ||
database: | ||
client: better-sqlite3 | ||
connection: ':memory:' | ||
cache: | ||
store: memory | ||
cors: | ||
origin: http://localhost:3000 | ||
methods: [GET, HEAD, PATCH, POST, PUT, DELETE] | ||
credentials: true | ||
csp: | ||
connect-src: ["'self'", 'http:', 'https:'] | ||
# Content-Security-Policy directives follow the Helmet format: https://helmetjs.github.io/#reference | ||
# Default Helmet Content-Security-Policy values can be removed by setting the key to false | ||
reading: | ||
allow: | ||
- host: example.com | ||
- host: '*.mozilla.org' | ||
- host: gitlab.com | ||
# workingDirectory: /tmp # Use this to configure a working directory for the scaffolder, defaults to the OS temp-dir | ||
|
||
integrations: | ||
gitlab: | ||
- host: gitlab.com |
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