@backstage/create-app 0.0.0-nightly-2021102122312 → 0.0.0-nightly-2021102522541
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -5
- package/package.json +1 -1
- package/templates/default-app/app-config.production.yaml +3 -3
- package/templates/default-app/app-config.yaml.hbs +5 -3
- package/templates/default-app/packages/app/src/App.test.tsx +2 -2
- package/templates/default-app/packages/backend/README.md +1 -1
- package/templates/default-app/packages/backend/package.json.hbs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,44 @@
|
|
|
1
1
|
# @backstage/create-app
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-2021102522541
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- a5a5d7e1f1: DefaultTechDocsCollator is now included in the search backend, and the Search Page updated with the SearchType component that includes the techdocs type
|
|
8
|
+
- bab752e2b3: Change default port of backend from 7000 to 7007.
|
|
9
|
+
|
|
10
|
+
This is due to the AirPlay Receiver process occupying port 7000 and preventing local Backstage instances on MacOS to start.
|
|
11
|
+
|
|
12
|
+
You can change the port back to 7000 or any other value by providing an `app-config.yaml` with the following values:
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
backend:
|
|
16
|
+
listen: 0.0.0.0:7123
|
|
17
|
+
baseUrl: http://localhost:7123
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
More information can be found here: https://backstage.io/docs/conf/writing
|
|
21
|
+
|
|
22
|
+
- 42ebbc18c0: Bump gitbeaker to the latest version
|
|
8
23
|
- Updated dependencies
|
|
9
|
-
- @backstage/errors@0.0.0-nightly-
|
|
10
|
-
- @backstage/plugin-scaffolder@0.0.0-nightly-
|
|
11
|
-
- @backstage/
|
|
12
|
-
- @backstage/
|
|
24
|
+
- @backstage/errors@0.0.0-nightly-2021102522541
|
|
25
|
+
- @backstage/plugin-scaffolder@0.0.0-nightly-2021102522541
|
|
26
|
+
- @backstage/plugin-auth-backend@0.0.0-nightly-2021102522541
|
|
27
|
+
- @backstage/cli@0.0.0-nightly-2021102522541
|
|
28
|
+
- @backstage/plugin-catalog-backend@0.0.0-nightly-2021102522541
|
|
29
|
+
- @backstage/backend-common@0.0.0-nightly-2021102522541
|
|
30
|
+
- @backstage/core-app-api@0.0.0-nightly-2021102522541
|
|
31
|
+
- @backstage/plugin-github-actions@0.0.0-nightly-2021102522541
|
|
32
|
+
- @backstage/plugin-proxy-backend@0.0.0-nightly-2021102522541
|
|
33
|
+
- @backstage/plugin-rollbar-backend@0.0.0-nightly-2021102522541
|
|
34
|
+
- @backstage/plugin-search-backend@0.0.0-nightly-2021102522541
|
|
35
|
+
- @backstage/plugin-techdocs@0.0.0-nightly-2021102522541
|
|
36
|
+
- @backstage/plugin-techdocs-backend@0.0.0-nightly-2021102522541
|
|
37
|
+
- @backstage/plugin-scaffolder-backend@0.0.0-nightly-2021102522541
|
|
38
|
+
- @backstage/core-plugin-api@0.0.0-nightly-2021102522541
|
|
39
|
+
- @backstage/test-utils@0.0.0-nightly-2021102522541
|
|
40
|
+
- @backstage/plugin-api-docs@0.0.0-nightly-2021102522541
|
|
41
|
+
- @backstage/core-components@0.0.0-nightly-2021102522541
|
|
13
42
|
|
|
14
43
|
## 0.4.4
|
|
15
44
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
app:
|
|
2
2
|
# Should be the same as backend.baseUrl when using the `app-backend` plugin
|
|
3
|
-
baseUrl: http://localhost:
|
|
3
|
+
baseUrl: http://localhost:7007
|
|
4
4
|
|
|
5
5
|
backend:
|
|
6
|
-
baseUrl: http://localhost:
|
|
6
|
+
baseUrl: http://localhost:7007
|
|
7
7
|
listen:
|
|
8
|
-
port:
|
|
8
|
+
port: 7007
|
|
@@ -6,9 +6,9 @@ organization:
|
|
|
6
6
|
name: My Company
|
|
7
7
|
|
|
8
8
|
backend:
|
|
9
|
-
baseUrl: http://localhost:
|
|
9
|
+
baseUrl: http://localhost:7007
|
|
10
10
|
listen:
|
|
11
|
-
port:
|
|
11
|
+
port: 7007
|
|
12
12
|
csp:
|
|
13
13
|
connect-src: ["'self'", 'http:', 'https:']
|
|
14
14
|
# Content-Security-Policy directives follow the Helmet format: https://helmetjs.github.io/#reference
|
|
@@ -32,7 +32,9 @@ backend:
|
|
|
32
32
|
user: ${POSTGRES_USER}
|
|
33
33
|
password: ${POSTGRES_PASSWORD}
|
|
34
34
|
# https://node-postgres.com/features/ssl
|
|
35
|
-
#
|
|
35
|
+
# you can set the sslmode configuration option via the `PGSSLMODE` environment variable
|
|
36
|
+
# see https://www.postgresql.org/docs/current/libpq-ssl.html Table 33.1. SSL Mode Descriptions (e.g. require)
|
|
37
|
+
# ssl:
|
|
36
38
|
# ca: # if you have a CA file and want to verify it you can uncomment this section
|
|
37
39
|
# $file: <file-path>/ca/server.crt
|
|
38
40
|
{{/if}}
|
|
@@ -10,9 +10,9 @@ describe('App', () => {
|
|
|
10
10
|
{
|
|
11
11
|
data: {
|
|
12
12
|
app: { title: 'Test' },
|
|
13
|
-
backend: { baseUrl: 'http://localhost:
|
|
13
|
+
backend: { baseUrl: 'http://localhost:7007' },
|
|
14
14
|
techdocs: {
|
|
15
|
-
storageUrl: 'http://localhost:
|
|
15
|
+
storageUrl: 'http://localhost:7007/api/techdocs/static/docs',
|
|
16
16
|
},
|
|
17
17
|
},
|
|
18
18
|
context: 'test',
|
|
@@ -36,7 +36,7 @@ yarn start
|
|
|
36
36
|
Substitute `x` for actual values, or leave them as dummy values just to try out
|
|
37
37
|
the backend without using the auth or sentry features.
|
|
38
38
|
|
|
39
|
-
The backend starts up on port
|
|
39
|
+
The backend starts up on port 7007 per default.
|
|
40
40
|
|
|
41
41
|
## Populating The Catalog
|
|
42
42
|
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@backstage/plugin-search-backend": "^{{version '@backstage/plugin-search-backend'}}",
|
|
28
28
|
"@backstage/plugin-search-backend-node": "^{{version '@backstage/plugin-search-backend-node'}}",
|
|
29
29
|
"@backstage/plugin-techdocs-backend": "^{{version '@backstage/plugin-techdocs-backend'}}",
|
|
30
|
-
"@gitbeaker/node": "^
|
|
30
|
+
"@gitbeaker/node": "^34.6.0",
|
|
31
31
|
"@octokit/rest": "^18.5.3",
|
|
32
32
|
"dockerode": "^3.3.1",
|
|
33
33
|
"express": "^4.17.1",
|