Skip to content

Commit 46005c7

Browse files
authored
UPD: Update app-config.production.yaml
1 parent 755a957 commit 46005c7

File tree

1 file changed

+72
-3
lines changed

1 file changed

+72
-3
lines changed

app-config.production.yaml

Lines changed: 72 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,78 @@
11
app:
2-
baseUrl: https://backstage.foundations-software-engineering.com
2+
baseUrl: https://backstage-deployment-1006240973223.europe-west10.run.app
33

44
backend:
5-
baseUrl: https://backstage.foundations-software-engineering.com
5+
baseUrl: https://backstage-deployment-1006240973223.europe-west10.run.app
66
cors:
7-
origin: https://backstage.foundations-software-engineering.com
7+
origin: https://backstage-deployment-1006240973223.europe-west10.run.app
88
methods: [GET, HEAD, PATCH, POST, PUT, DELETE]
99
credentials: true
10+
11+
database:
12+
client: pg
13+
connection:
14+
host: ${POSTGRES_HOST}
15+
port: ${POSTGRES_PORT}
16+
user: ${POSTGRES_USER}
17+
password: ${POSTGRES_PASSWORD}
18+
database: ${POSTGRES_DB}
19+
cache:
20+
store: memory
21+
22+
integrations:
23+
github:
24+
- host: github.com
25+
token: ${GITHUB_TOKEN}
26+
27+
gitlab:
28+
- host: gitlab.com
29+
token: ${GITLAB_TOKEN}
30+
31+
32+
techdocs:
33+
builder: 'external'
34+
generator:
35+
runIn: 'local'
36+
publisher:
37+
type: 'googleGcs'
38+
googleGcs:
39+
bucketName: 'backstage-codeidp-techdocs'
40+
projectId: code-idp
41+
credentials: ${TECHDOCS_GCS_CREDENTIALS}
42+
43+
# scaffolder:
44+
45+
46+
catalog:
47+
import:
48+
entityFilename: catalog-info.yaml
49+
pullRequestBranchName: backstage-integration
50+
rules:
51+
- allow: [Component, System, API, User, Group, Resource, Location, Domain]
52+
locations:
53+
- type: file
54+
target: ./examples/template/initiate-deployment.yaml
55+
rules:
56+
- allow: [Template]
57+
- type: file
58+
target: ./examples/template/register-component.yaml
59+
rules:
60+
- allow: [Template]
61+
- type: file
62+
target: ./examples/template/sample-document.yaml
63+
rules:
64+
- allow: [Template]
65+
66+
67+
auth:
68+
environment: production
69+
providers:
70+
google:
71+
development:
72+
clientId: ${GOOGLE_CLIENT_ID}
73+
clientSecret: ${GOOGLE_CLIENT_SECRET}
74+
75+
github:
76+
development:
77+
clientId: ${GITHUB_CLIENT_ID}
78+
clientSecret: ${GITHUB_CLIENT_SECRET}

0 commit comments

Comments
 (0)