-
Notifications
You must be signed in to change notification settings - Fork 2
/
app-config.yaml
88 lines (80 loc) · 2.49 KB
/
app-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
app:
title: Scaffolded Backstage App
baseUrl: http://localhost:3000
analytics:
segment:
enabled: true
writeKey: ${SEGMENT_WRITE_KEY:-foobar}
testMode: true
debug: true
organization:
name: My Company
backend:
baseUrl: http://localhost:7007
listen:
port: 7007
csp:
connect-src: ["'self'", 'http:', 'https:']
cors:
origin: http://localhost:3000
methods: [GET, HEAD, PATCH, POST, PUT, DELETE]
credentials: true
database:
client: better-sqlite3
connection: ':memory:'
cache:
store: memory
integrations:
github:
- host: github.com
token: ${GITHUB_TOKEN}
proxy:
### Example for how to add a proxy endpoint for the frontend.
### A typical reason to do this is to handle HTTPS and CORS for internal services.
# endpoints:
# '/test':
# target: 'https://example.com'
# changeOrigin: true
proxysigv4:
# Check out the proxy-sigv4 plugin documentation for detailed explanation
# '/some-local-path':
# target: 'https://<API ID>.execute-api.<region>.amazonaws.com'
# roleArn: 'arn:aws:iam::<account>:role/<name>'
# roleSessionName: tempAssumeRoleSession ## optional
# OR
# '/some-local-path': https://<API ID>.execute-api.<region>.amazonaws.com
# Reference documentation http://backstage.io/docs/features/techdocs/configuration
# Note: After experimenting with basic setup, use CI/CD to generate docs
# and an external cloud storage when deploying TechDocs for production use-case.
# https://backstage.io/docs/features/techdocs/how-to-guides#how-to-migrate-from-techdocs-basic-to-recommended-deployment-approach
techdocs:
builder: 'local' # Alternatives - 'external'
generator:
runIn: 'docker' # Alternatives - 'local'
publisher:
type: 'local' # Alternatives - 'googleGcs' or 'awsS3'. Read documentation for using alternatives.
auth:
# see https://backstage.io/docs/auth/ to learn about auth providers
providers:
guest: {}
scaffolder:
github:
token: ${GITHUB_TOKEN}
visibility: public # or 'internal' or 'private'
catalog:
import:
entityFilename: catalog-info.yaml
pullRequestBranchName: backstage-integration
rules:
- allow: [Component, System, API, Resource, Location]
locations:
- type: file
target: ../../catalog-examples/entities.yaml
- type: file
target: ../../catalog-examples/template/template.yaml
rules:
- allow: [Template]
- type: file
target: ../../catalog-examples/org.yaml
rules:
- allow: [User, Group]