forked from backstage/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app-config.yaml
102 lines (88 loc) · 2.63 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
app:
title: Backstage Demo
baseUrl: http://localhost:3000
organization:
name: Backstage
backend:
baseUrl: http://localhost:7000
listen:
port: 7000
csp:
connect-src: ["'self'", 'http:', 'https:']
img-src: ["'self'", 'data:', 'https://backstage.io']
cors:
origin: http://localhost:3000
methods: [GET, POST, PUT, DELETE]
credentials: true
database:
client: sqlite3
connection: ':memory:'
integrations:
github:
- host: github.com
token:
$env: GITHUB_TOKEN
auth:
environment: development
providers:
github:
development:
clientId:
$env: GITHUB_DEVELOPMENT_CLIENT_ID
clientSecret:
$env: GITHUB_DEVELOPMENT_CLIENT_SECRET
catalog:
readonly: true
rules:
- allow: [Component, API, System, Domain, Resource, Location, User, Group]
locations:
# Backstage example components
- type: url
target: https://github.com/backstage/backstage/blob/master/packages/catalog-model/examples/all-components.yaml
# Backstage example systems
- type: url
target: https://github.com/backstage/backstage/blob/master/packages/catalog-model/examples/all-systems.yaml
# Backstage example APIs
- type: url
target: https://github.com/backstage/backstage/blob/master/packages/catalog-model/examples/all-apis.yaml
# Backstage example organization groups
- type: url
target: https://github.com/backstage/backstage/blob/master/packages/catalog-model/examples/acme/org.yaml
# Backstage example domains
- type: url
target: https://github.com/backstage/backstage/blob/master/packages/catalog-model/examples/all-domains.yaml
# Backstage example resources
- type: url
target: https://github.com/backstage/backstage/blob/master/packages/catalog-model/examples/all-resources.yaml
# The backstage demo deployment (this)
- type: url
target: https://github.com/backstage/demo/blob/master/catalog-info.yaml
# The backstage library repository
- type: url
target: https://github.com/backstage/backstage/blob/master/catalog-info.yaml
costInsights:
engineerCost: 200000
products:
computeEngine:
name: Compute Engine
icon: compute
cloudStorage:
name: Cloud Storage
icon: storage
bigQuery:
name: BigQuery
icon: search
metrics:
DAU:
name: Daily Active Users
default: true
MSC:
name: Monthly Subscribers
# app-config.heroku.yaml replaces these values
# These configs here are required for config validation in CI to pass
techdocs:
builder: 'external'
generator:
runIn: 'local'
publisher:
type: 'local'